Cleanup dependencies

This commit is contained in:
ccocchi 2012-04-03 19:10:37 +02:00
parent bf2305dcc5
commit 7f66973b83
2 changed files with 6 additions and 32 deletions

View File

@ -2,14 +2,11 @@ PATH
remote: . remote: .
specs: specs:
rabl-fast-json (0.1.0) rabl-fast-json (0.1.0)
rails (~> 3.2.1) activesupport (~> 3.2.1)
GEM GEM
remote: http://rubygems.org/ remote: http://rubygems.org/
specs: specs:
actionmailer (3.2.1)
actionpack (= 3.2.1)
mail (~> 2.4.0)
actionpack (3.2.1) actionpack (3.2.1)
activemodel (= 3.2.1) activemodel (= 3.2.1)
activesupport (= 3.2.1) activesupport (= 3.2.1)
@ -23,31 +20,16 @@ GEM
activemodel (3.2.1) activemodel (3.2.1)
activesupport (= 3.2.1) activesupport (= 3.2.1)
builder (~> 3.0.0) builder (~> 3.0.0)
activerecord (3.2.1)
activemodel (= 3.2.1)
activesupport (= 3.2.1)
arel (~> 3.0.0)
tzinfo (~> 0.3.29)
activeresource (3.2.1)
activemodel (= 3.2.1)
activesupport (= 3.2.1)
activesupport (3.2.1) activesupport (3.2.1)
i18n (~> 0.6) i18n (~> 0.6)
multi_json (~> 1.0) multi_json (~> 1.0)
arel (3.0.2)
builder (3.0.0) builder (3.0.0)
erubis (2.7.0) erubis (2.7.0)
hike (1.2.1) hike (1.2.1)
i18n (0.6.0) i18n (0.6.0)
journey (1.0.3) journey (1.0.3)
json (1.6.5) json (1.6.5)
mail (2.4.4)
i18n (>= 0.4.0)
mime-types (~> 1.16)
treetop (~> 1.4.8)
mime-types (1.18)
multi_json (1.1.0) multi_json (1.1.0)
polyglot (0.3.3)
rack (1.4.1) rack (1.4.1)
rack-cache (1.1) rack-cache (1.1)
rack (>= 0.4) rack (>= 0.4)
@ -55,14 +37,6 @@ GEM
rack rack
rack-test (0.6.1) rack-test (0.6.1)
rack (>= 1.0) rack (>= 1.0)
rails (3.2.1)
actionmailer (= 3.2.1)
actionpack (= 3.2.1)
activerecord (= 3.2.1)
activeresource (= 3.2.1)
activesupport (= 3.2.1)
bundler (~> 1.0)
railties (= 3.2.1)
railties (3.2.1) railties (3.2.1)
actionpack (= 3.2.1) actionpack (= 3.2.1)
activesupport (= 3.2.1) activesupport (= 3.2.1)
@ -81,15 +55,13 @@ GEM
sqlite3 (1.3.5) sqlite3 (1.3.5)
thor (0.14.6) thor (0.14.6)
tilt (1.3.3) tilt (1.3.3)
treetop (1.4.10)
polyglot
polyglot (>= 0.3.1)
tzinfo (0.3.32)
PLATFORMS PLATFORMS
ruby ruby
DEPENDENCIES DEPENDENCIES
actionpack (~> 3.2.1)
rabl-fast-json! rabl-fast-json!
railties (~> 3.2.1)
rspec-mocks rspec-mocks
sqlite3 sqlite3

View File

@ -16,7 +16,9 @@ Gem::Specification.new do |s|
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"] s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"] s.test_files = Dir["test/**/*"]
s.add_dependency "rails", "~> 3.2.1" s.add_dependency "activesupport", "~> 3.2.1"
s.add_development_dependency "sqlite3" s.add_development_dependency "sqlite3"
s.add_development_dependency "railties", "~> 3.2.1"
s.add_development_dependency "actionpack", "~> 3.2.1"
end end