environment.rb
1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Be sure to restart your server when you modify this file
# Specifies gem version of Rails to use when vendor/rails is not present
RAILS_GEM_VERSION = '2.3.4' unless defined? RAILS_GEM_VERSION
# Bootstrap the Rails environment, frameworks, and default configuration
require File.join(File.dirname(__FILE__), 'boot')
Rails::Initializer.run do |config|
# Settings in config/environments/* take precedence over those specified here.
config.time_zone = 'UTC'
#config.action_mailer.delivery_method = :smtp
config.action_mailer.delivery_method = :sendmail
config.gem "ambethia-smtp-tls",
:lib => "smtp-tls",
:version => "1.1.2",
:source => "http://gems.github.com"
config.gem "tobi-delayed_job",
:lib => "delayed_job",
:version => "1.7.0",
:source => "http://gems.github.com"
config.gem "thoughtbot-paperclip",
:lib => "paperclip",
:version => "2.3.1",
:source => "http://gems.github.com"
config.gem "aws-s3",
:lib => "aws/s3",
:version => "0.6.2"
config.gem "mime-types",
:lib => "mime/types",
:version => "1.16"
config.gem "xml-simple",
:lib => "xmlsimple",
:version => "1.0.12"
config.gem "yfactorial-utility_scopes",
:lib => "utility_scopes",
:version => "0.2.2",
:source => "http://gems.github.com"
config.gem "justinfrench-formtastic",
:lib => 'formtastic',
:source => 'http://gems.github.com',
:version => '0.2.2'
config.gem "josevalim-inherited_resources",
:lib => 'inherited_resources',
:source => 'http://gems.github.com',
:version => '0.9.1'
config.gem "thoughtbot-clearance",
:lib => 'clearance',
:source => 'http://gems.github.com',
:version => '0.8.2'
config.gem "activemerchant",
:lib => 'active_merchant',
:version => '1.4.2'
end