Skip to content

Commit

Permalink
Removed dependency on Rails
Browse files Browse the repository at this point in the history
  • Loading branch information
evansagge committed Aug 24, 2010
1 parent ff010db commit 71b4734
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 83 deletions.
2 changes: 1 addition & 1 deletion .rvmrc
@@ -1 +1 @@
rvm 1.9.2-rc2
rvm 1.9.2
6 changes: 2 additions & 4 deletions Gemfile
@@ -1,11 +1,9 @@
# A sample Gemfile
source :gemcutter

gem "rails", "3.0.0.rc"

gem "mongoid", :git => 'git://github.com/durran/mongoid.git'
gem "mongoid", '>= 2.0.0.beta.15'
gem 'bson_ext', '>= 1.0.4'

gem 'redgreen'

gem 'rspec-rails', ">= 2.0.0.beta.19"
gem 'rspec', ">= 2.0.0.beta.19"
86 changes: 9 additions & 77 deletions Gemfile.lock
@@ -1,81 +1,24 @@
GIT
remote: git://github.com/durran/mongoid.git
revision: 93bd79e
specs:
mongoid (2.0.0.beta.15)
activemodel (= 3.0.0.rc)
bson (= 1.0.4)
mongo (= 1.0.6)
tzinfo (= 0.3.22)
will_paginate (~> 3.0.pre)

GEM
remote: http://rubygems.org/
specs:
abstract (1.0.0)
actionmailer (3.0.0.rc)
actionpack (= 3.0.0.rc)
mail (~> 2.2.5)
actionpack (3.0.0.rc)
activemodel (= 3.0.0.rc)
activesupport (= 3.0.0.rc)
builder (~> 2.1.2)
erubis (~> 2.6.6)
i18n (~> 0.4.1)
rack (~> 1.2.1)
rack-mount (~> 0.6.9)
rack-test (~> 0.5.4)
tzinfo (~> 0.3.22)
activemodel (3.0.0.rc)
activesupport (= 3.0.0.rc)
builder (~> 2.1.2)
i18n (~> 0.4.1)
activerecord (3.0.0.rc)
activemodel (= 3.0.0.rc)
activesupport (= 3.0.0.rc)
arel (~> 0.4.0)
tzinfo (~> 0.3.22)
activeresource (3.0.0.rc)
activemodel (= 3.0.0.rc)
activesupport (= 3.0.0.rc)
activesupport (3.0.0.rc)
arel (0.4.0)
activesupport (>= 3.0.0.beta)
bson (1.0.4)
bson_ext (1.0.4)
builder (2.1.2)
diff-lcs (1.1.2)
erubis (2.6.6)
abstract (>= 1.0.0)
i18n (0.4.1)
mail (2.2.5)
activesupport (>= 2.3.6)
mime-types
treetop (>= 1.4.5)
mime-types (1.16)
mongo (1.0.6)
mongo (1.0.7)
bson (>= 1.0.4)
nokogiri (1.4.3.1)
polyglot (0.3.1)
rack (1.2.1)
rack-mount (0.6.9)
rack (>= 1.0.0)
rack-test (0.5.4)
rack (>= 1.0)
rails (3.0.0.rc)
actionmailer (= 3.0.0.rc)
actionpack (= 3.0.0.rc)
activerecord (= 3.0.0.rc)
activeresource (= 3.0.0.rc)
activesupport (= 3.0.0.rc)
bundler (>= 1.0.0.rc.1)
railties (= 3.0.0.rc)
railties (3.0.0.rc)
actionpack (= 3.0.0.rc)
activesupport (= 3.0.0.rc)
rake (>= 0.8.3)
thor (~> 0.14.0)
rake (0.8.7)
mongoid (2.0.0.beta.16)
activemodel (= 3.0.0.rc)
bson (= 1.0.4)
mongo (= 1.0.7)
tzinfo (= 0.3.22)
will_paginate (~> 3.0.pre)
redgreen (1.2.2)
rspec (2.0.0.beta.19)
rspec-core (= 2.0.0.beta.19)
Expand All @@ -85,25 +28,14 @@ GEM
rspec-expectations (2.0.0.beta.19)
diff-lcs (>= 1.1.2)
rspec-mocks (2.0.0.beta.19)
rspec-rails (2.0.0.beta.19)
rspec (= 2.0.0.beta.19)
webrat (>= 0.7.2.beta.1)
thor (0.14.0)
treetop (1.4.8)
polyglot (>= 0.3.1)
tzinfo (0.3.22)
webrat (0.7.2.beta.1)
nokogiri (>= 1.2.0)
rack (>= 1.0)
rack-test (>= 0.5.3)
will_paginate (3.0.pre2)

PLATFORMS
ruby

DEPENDENCIES
bson_ext (>= 1.0.4)
mongoid!
rails (= 3.0.0.rc)
mongoid (>= 2.0.0.beta.15)
redgreen
rspec-rails (>= 2.0.0.beta.19)
rspec (>= 2.0.0.beta.19)
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -12,7 +12,7 @@ begin
gem.authors = ["Evan Sagge"]
gem.add_dependency "mongoid", ">= 2.0.0.beta.15"
gem.add_dependency "bson_ext", ">= 1.0.4"
gem.add_dependency "rspec-rails", ">= 2.0.0.beta.19"
gem.add_dependency "rspec", ">= 2.0.0.beta.19"
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
Jeweler::GemcutterTasks.new
Expand Down

0 comments on commit 71b4734

Please sign in to comment.