From ee1c4b2c7771d7415e068cb103afe4ebfdb3647a Mon Sep 17 00:00:00 2001 From: John Nunemaker Date: Mon, 9 Jul 2012 11:26:56 -0400 Subject: [PATCH] Added rails 3.0-3.2 gemfiles for travis. --- .travis.yml | 4 ++ gemfiles/rails3_0.gemfile | 16 +++++ gemfiles/rails3_0.gemfile.lock | 107 ++++++++++++++++++++++++++++++ gemfiles/rails3_1.gemfile | 16 +++++ gemfiles/rails3_1.gemfile.lock | 117 +++++++++++++++++++++++++++++++++ gemfiles/rails3_2.gemfile | 16 +++++ gemfiles/rails3_2.gemfile.lock | 115 ++++++++++++++++++++++++++++++++ 7 files changed, 391 insertions(+) create mode 100644 gemfiles/rails3_0.gemfile create mode 100644 gemfiles/rails3_0.gemfile.lock create mode 100644 gemfiles/rails3_1.gemfile create mode 100644 gemfiles/rails3_1.gemfile.lock create mode 100644 gemfiles/rails3_2.gemfile create mode 100644 gemfiles/rails3_2.gemfile.lock diff --git a/.travis.yml b/.travis.yml index 615f4ea96..3e8b37868 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,7 @@ +gemfile: + - Gemfile + - gemfiles/rails3_1.gemfile + - gemfiles/rails3_2.gemfile language: ruby rvm: - 1.8.7 diff --git a/gemfiles/rails3_0.gemfile b/gemfiles/rails3_0.gemfile new file mode 100644 index 000000000..875c21897 --- /dev/null +++ b/gemfiles/rails3_0.gemfile @@ -0,0 +1,16 @@ +source :rubygems + +gem 'rake' +gem 'bson_ext', '~> 1.5' +gem 'multi_json', '~> 1.2.0' + +group :test do + gem 'rails', '~> 3.0.0' + gem 'jnunemaker-matchy', '~> 0.4', :require => 'matchy' + gem 'shoulda', '~> 2.11' + gem 'timecop', '~> 0.3' + gem 'mocha', '~> 0.10' + gem 'rack-test', '~> 0.5' +end + +gemspec :path => '../' diff --git a/gemfiles/rails3_0.gemfile.lock b/gemfiles/rails3_0.gemfile.lock new file mode 100644 index 000000000..71411f5bf --- /dev/null +++ b/gemfiles/rails3_0.gemfile.lock @@ -0,0 +1,107 @@ +PATH + remote: /Users/jnunemaker/projects/mongomapper + specs: + mongo_mapper (0.11.1) + activemodel (~> 3.0) + activesupport (~> 3.0) + plucky (~> 0.5.1) + +GEM + remote: http://rubygems.org/ + specs: + abstract (1.0.0) + actionmailer (3.0.15) + actionpack (= 3.0.15) + mail (~> 2.2.19) + actionpack (3.0.15) + activemodel (= 3.0.15) + activesupport (= 3.0.15) + builder (~> 2.1.2) + erubis (~> 2.6.6) + i18n (~> 0.5.0) + rack (~> 1.2.5) + rack-mount (~> 0.6.14) + rack-test (~> 0.5.7) + tzinfo (~> 0.3.23) + activemodel (3.0.15) + activesupport (= 3.0.15) + builder (~> 2.1.2) + i18n (~> 0.5.0) + activerecord (3.0.15) + activemodel (= 3.0.15) + activesupport (= 3.0.15) + arel (~> 2.0.10) + tzinfo (~> 0.3.23) + activeresource (3.0.15) + activemodel (= 3.0.15) + activesupport (= 3.0.15) + activesupport (3.0.15) + arel (2.0.10) + bson (1.6.4) + bson_ext (1.6.4) + bson (~> 1.6.4) + builder (2.1.2) + erubis (2.6.6) + abstract (>= 1.0.0) + i18n (0.5.0) + jnunemaker-matchy (0.4.0) + json (1.7.3) + mail (2.2.19) + activesupport (>= 2.3.6) + i18n (>= 0.4.0) + mime-types (~> 1.16) + treetop (~> 1.4.8) + metaclass (0.0.1) + mime-types (1.19) + mocha (0.12.0) + metaclass (~> 0.0.1) + mongo (1.6.4) + bson (~> 1.6.4) + multi_json (1.2.0) + plucky (0.5.1) + mongo (~> 1.5) + polyglot (0.3.3) + rack (1.2.5) + rack-mount (0.6.14) + rack (>= 1.0.0) + rack-test (0.5.7) + rack (>= 1.0) + rails (3.0.15) + actionmailer (= 3.0.15) + actionpack (= 3.0.15) + activerecord (= 3.0.15) + activeresource (= 3.0.15) + activesupport (= 3.0.15) + bundler (~> 1.0) + railties (= 3.0.15) + railties (3.0.15) + actionpack (= 3.0.15) + activesupport (= 3.0.15) + rake (>= 0.8.7) + rdoc (~> 3.4) + thor (~> 0.14.4) + rake (0.9.2.2) + rdoc (3.12) + json (~> 1.4) + shoulda (2.11.3) + thor (0.14.6) + timecop (0.3.5) + treetop (1.4.10) + polyglot + polyglot (>= 0.3.1) + tzinfo (0.3.33) + +PLATFORMS + ruby + +DEPENDENCIES + bson_ext (~> 1.5) + jnunemaker-matchy (~> 0.4) + mocha (~> 0.10) + mongo_mapper! + multi_json (~> 1.2.0) + rack-test (~> 0.5) + rails (~> 3.0.0) + rake + shoulda (~> 2.11) + timecop (~> 0.3) diff --git a/gemfiles/rails3_1.gemfile b/gemfiles/rails3_1.gemfile new file mode 100644 index 000000000..3fcc2e142 --- /dev/null +++ b/gemfiles/rails3_1.gemfile @@ -0,0 +1,16 @@ +source :rubygems + +gem 'rake' +gem 'bson_ext', '~> 1.5' +gem 'multi_json', '~> 1.2.0' + +group :test do + gem 'rails', '~> 3.1.0' + gem 'jnunemaker-matchy', '~> 0.4', :require => 'matchy' + gem 'shoulda', '~> 2.11' + gem 'timecop', '~> 0.3' + gem 'mocha', '~> 0.10' + gem 'rack-test', '~> 0.5' +end + +gemspec :path => '../' diff --git a/gemfiles/rails3_1.gemfile.lock b/gemfiles/rails3_1.gemfile.lock new file mode 100644 index 000000000..d5bebd34c --- /dev/null +++ b/gemfiles/rails3_1.gemfile.lock @@ -0,0 +1,117 @@ +PATH + remote: /Users/jnunemaker/projects/mongomapper + specs: + mongo_mapper (0.11.1) + activemodel (~> 3.0) + activesupport (~> 3.0) + plucky (~> 0.5.1) + +GEM + remote: http://rubygems.org/ + specs: + actionmailer (3.1.6) + actionpack (= 3.1.6) + mail (~> 2.3.3) + actionpack (3.1.6) + activemodel (= 3.1.6) + activesupport (= 3.1.6) + builder (~> 3.0.0) + erubis (~> 2.7.0) + i18n (~> 0.6) + rack (~> 1.3.6) + rack-cache (~> 1.2) + rack-mount (~> 0.8.2) + rack-test (~> 0.6.1) + sprockets (~> 2.0.4) + activemodel (3.1.6) + activesupport (= 3.1.6) + builder (~> 3.0.0) + i18n (~> 0.6) + activerecord (3.1.6) + activemodel (= 3.1.6) + activesupport (= 3.1.6) + arel (~> 2.2.3) + tzinfo (~> 0.3.29) + activeresource (3.1.6) + activemodel (= 3.1.6) + activesupport (= 3.1.6) + activesupport (3.1.6) + multi_json (>= 1.0, < 1.3) + arel (2.2.3) + bson (1.6.4) + bson_ext (1.6.4) + bson (~> 1.6.4) + builder (3.0.0) + erubis (2.7.0) + hike (1.2.1) + i18n (0.6.0) + jnunemaker-matchy (0.4.0) + json (1.7.3) + mail (2.3.3) + i18n (>= 0.4.0) + mime-types (~> 1.16) + treetop (~> 1.4.8) + metaclass (0.0.1) + mime-types (1.19) + mocha (0.12.0) + metaclass (~> 0.0.1) + mongo (1.6.4) + bson (~> 1.6.4) + multi_json (1.2.0) + plucky (0.5.1) + mongo (~> 1.5) + polyglot (0.3.3) + rack (1.3.6) + rack-cache (1.2) + rack (>= 0.4) + rack-mount (0.8.3) + rack (>= 1.0.0) + rack-ssl (1.3.2) + rack + rack-test (0.6.1) + rack (>= 1.0) + rails (3.1.6) + actionmailer (= 3.1.6) + actionpack (= 3.1.6) + activerecord (= 3.1.6) + activeresource (= 3.1.6) + activesupport (= 3.1.6) + bundler (~> 1.0) + railties (= 3.1.6) + railties (3.1.6) + actionpack (= 3.1.6) + activesupport (= 3.1.6) + rack-ssl (~> 1.3.2) + rake (>= 0.8.7) + rdoc (~> 3.4) + thor (~> 0.14.6) + rake (0.9.2.2) + rdoc (3.12) + json (~> 1.4) + shoulda (2.11.3) + sprockets (2.0.4) + hike (~> 1.2) + rack (~> 1.0) + tilt (~> 1.1, != 1.3.0) + thor (0.14.6) + tilt (1.3.3) + timecop (0.3.5) + treetop (1.4.10) + polyglot + polyglot (>= 0.3.1) + tzinfo (0.3.33) + +PLATFORMS + ruby + +DEPENDENCIES + bson_ext (~> 1.5) + jnunemaker-matchy (~> 0.4) + mocha (~> 0.10) + mongo_mapper! + multi_json (~> 1.2.0) + rack-test (~> 0.5) + rails (~> 3.1.0) + rake + shoulda (~> 2.11) + timecop (~> 0.3) diff --git a/gemfiles/rails3_2.gemfile b/gemfiles/rails3_2.gemfile new file mode 100644 index 000000000..0e06ff065 --- /dev/null +++ b/gemfiles/rails3_2.gemfile @@ -0,0 +1,16 @@ +source :rubygems + +gem 'rake' +gem 'bson_ext', '~> 1.5' +gem 'multi_json', '~> 1.2.0' + +group :test do + gem 'rails', '~> 3.2.0' + gem 'jnunemaker-matchy', '~> 0.4', :require => 'matchy' + gem 'shoulda', '~> 2.11' + gem 'timecop', '~> 0.3' + gem 'mocha', '~> 0.10' + gem 'rack-test', '~> 0.6' +end + +gemspec :path => '../' diff --git a/gemfiles/rails3_2.gemfile.lock b/gemfiles/rails3_2.gemfile.lock new file mode 100644 index 000000000..6d6087acb --- /dev/null +++ b/gemfiles/rails3_2.gemfile.lock @@ -0,0 +1,115 @@ +PATH + remote: /Users/jnunemaker/projects/mongomapper + specs: + mongo_mapper (0.11.1) + activemodel (~> 3.0) + activesupport (~> 3.0) + plucky (~> 0.5.1) + +GEM + remote: http://rubygems.org/ + specs: + actionmailer (3.2.6) + actionpack (= 3.2.6) + mail (~> 2.4.4) + actionpack (3.2.6) + activemodel (= 3.2.6) + activesupport (= 3.2.6) + builder (~> 3.0.0) + erubis (~> 2.7.0) + journey (~> 1.0.1) + rack (~> 1.4.0) + rack-cache (~> 1.2) + rack-test (~> 0.6.1) + sprockets (~> 2.1.3) + activemodel (3.2.6) + activesupport (= 3.2.6) + builder (~> 3.0.0) + activerecord (3.2.6) + activemodel (= 3.2.6) + activesupport (= 3.2.6) + arel (~> 3.0.2) + tzinfo (~> 0.3.29) + activeresource (3.2.6) + activemodel (= 3.2.6) + activesupport (= 3.2.6) + activesupport (3.2.6) + i18n (~> 0.6) + multi_json (~> 1.0) + arel (3.0.2) + bson (1.6.4) + bson_ext (1.6.4) + bson (~> 1.6.4) + builder (3.0.0) + erubis (2.7.0) + hike (1.2.1) + i18n (0.6.0) + jnunemaker-matchy (0.4.0) + journey (1.0.4) + json (1.7.3) + mail (2.4.4) + i18n (>= 0.4.0) + mime-types (~> 1.16) + treetop (~> 1.4.8) + metaclass (0.0.1) + mime-types (1.19) + mocha (0.12.0) + metaclass (~> 0.0.1) + mongo (1.6.4) + bson (~> 1.6.4) + multi_json (1.2.0) + plucky (0.5.1) + mongo (~> 1.5) + polyglot (0.3.3) + rack (1.4.1) + rack-cache (1.2) + rack (>= 0.4) + rack-ssl (1.3.2) + rack + rack-test (0.6.1) + rack (>= 1.0) + rails (3.2.6) + actionmailer (= 3.2.6) + actionpack (= 3.2.6) + activerecord (= 3.2.6) + activeresource (= 3.2.6) + activesupport (= 3.2.6) + bundler (~> 1.0) + railties (= 3.2.6) + railties (3.2.6) + actionpack (= 3.2.6) + activesupport (= 3.2.6) + rack-ssl (~> 1.3.2) + rake (>= 0.8.7) + rdoc (~> 3.4) + thor (>= 0.14.6, < 2.0) + rake (0.9.2.2) + rdoc (3.12) + json (~> 1.4) + shoulda (2.11.3) + sprockets (2.1.3) + hike (~> 1.2) + rack (~> 1.0) + tilt (~> 1.1, != 1.3.0) + thor (0.15.4) + tilt (1.3.3) + timecop (0.3.5) + treetop (1.4.10) + polyglot + polyglot (>= 0.3.1) + tzinfo (0.3.33) + +PLATFORMS + ruby + +DEPENDENCIES + bson_ext (~> 1.5) + jnunemaker-matchy (~> 0.4) + mocha (~> 0.10) + mongo_mapper! + multi_json (~> 1.2.0) + rack-test (~> 0.6) + rails (~> 3.2.0) + rake + shoulda (~> 2.11) + timecop (~> 0.3)