Commit 21eb6ccf2af55e864598342685c2d0e33178dbd4

Authored by Dan Croak
1 parent 48c7a14e

making sure .gems and config/environment.rb are in sync, complete

Showing 2 changed files with 22 additions and 4 deletions   Show diff stats
.gems
1 1 ambethia-smtp-tls --version '1.1.2' --source gems.github.com
2 2 tobi-delayed_job --version '1.7.0' --source gems.github.com
3 3 tristandunn-paperclip --version '2.3.1' --source gems.github.com
  4 +mime-types --version '1.16'
  5 +xml-simple --version '1.0.12'
4 6 aws-s3 --version '0.6.2'
5 7 rubaidh-google_analytics --version '1.1.4' --source gems.github.com
6 8 yfactorial-utility_scopes --version '0.2.2' --source gems.github.com
7 9 justinfrench-formtastic --version '0.2.1' --source gems.github.com
8 10 thoughtbot-clearance --version '0.7.0' --source gems.github.com
  11 +josevalim-inherited_resources ==version='0.8.5' --source gems.github.com
9 12  
... ...
config/environment.rb
... ... @@ -21,12 +21,19 @@ Rails::Initializer.run do |config|
21 21 :lib => "delayed_job",
22 22 :version => "1.7.0",
23 23 :source => "http://gems.github.com"
24   - config.gem "thoughtbot-paperclip",
  24 + config.gem "tristandunn-paperclip",
25 25 :lib => "paperclip",
26   - :version => "2.2.9.2",
  26 + :version => "2.3.1",
27 27 :source => "http://gems.github.com"
28   - config.gem "right_aws",
29   - :version => "1.10.0"
  28 + config.gem "mime-types",
  29 + :lib => "mime/types",
  30 + :version => "1.16"
  31 + config.gem "xml-simple",
  32 + :lib => "xmlsimple",
  33 + :version => "1.0.12"
  34 + config.gem "aws-s3",
  35 + :lib => "aws/s3",
  36 + :version => "0.6.2"
30 37 config.gem "yfactorial-utility_scopes",
31 38 :lib => "utility_scopes",
32 39 :version => "0.2.2",
... ... @@ -35,5 +42,13 @@ Rails::Initializer.run do |config|
35 42 :lib => 'formtastic',
36 43 :source => 'http://gems.github.com',
37 44 :version => '0.2.1'
  45 + config.gem "josevalim-inherited_resources",
  46 + :lib => 'inherited_resources',
  47 + :source => 'http://gems.github.com',
  48 + :version => '0.8.5'
  49 + config.gem "thoughtbot-clearance",
  50 + :lib => 'clearance',
  51 + :source => 'http://gems.github.com',
  52 + :version => '0.7.0'
38 53 end
39 54  
... ...