From 37e62e3ef257b95a81a16a2817e56bc1aff4eb34 Mon Sep 17 00:00:00 2001 From: Kevin Glowacz Date: Wed, 11 May 2016 11:40:45 -0500 Subject: [PATCH] Remove gemfile locks (#108) * Update .gitignore and remove gemfile locks * Cache bundler * pin gems to their required rubies pin rake to below 11 for older ruby support Pin amatch to less than 1.7 since 1.7 requires ruby 2 Pin httpi to less than 2.3 on ruby 1.8 Pin i18n Pin rack-cache --- .gitignore | 54 +++------------- .travis.yml | 1 + Appraisals | 8 +++ Gemfile | 3 + Gemfile.lock | 115 --------------------------------- gemfiles/rails_23.gemfile | 3 + gemfiles/rails_23.gemfile.lock | 70 -------------------- gemfiles/rails_30.gemfile | 3 + gemfiles/rails_30.gemfile.lock | 92 -------------------------- gemfiles/rails_31.gemfile | 5 ++ gemfiles/rails_31.gemfile.lock | 98 ---------------------------- gemfiles/rails_32.gemfile | 5 ++ gemfiles/rails_32.gemfile.lock | 97 --------------------------- gemfiles/rails_4.gemfile | 2 + gemfiles/rails_4.gemfile.lock | 94 --------------------------- gemfiles/rails_41.gemfile | 2 + gemfiles/rails_41.gemfile.lock | 98 ---------------------------- gemfiles/rails_42.gemfile | 2 + gemfiles/rails_42.gemfile.lock | 115 --------------------------------- 19 files changed, 44 insertions(+), 823 deletions(-) delete mode 100644 Gemfile.lock delete mode 100644 gemfiles/rails_23.gemfile.lock delete mode 100644 gemfiles/rails_30.gemfile.lock delete mode 100644 gemfiles/rails_31.gemfile.lock delete mode 100644 gemfiles/rails_32.gemfile.lock delete mode 100644 gemfiles/rails_4.gemfile.lock delete mode 100644 gemfiles/rails_41.gemfile.lock delete mode 100644 gemfiles/rails_42.gemfile.lock diff --git a/.gitignore b/.gitignore index 5f5f2d15..b62c9a37 100644 --- a/.gitignore +++ b/.gitignore @@ -1,44 +1,10 @@ -.rvmrc - -# rcov generated -coverage - -# rdoc generated -rdoc - -# yard generated -doc -.yardoc - -# bundler -.bundle - -# jeweler generated -pkg - -# Have editor/IDE/OS specific files you need to ignore? Consider using a global gitignore: -# -# * Create a file at ~/.gitignore -# * Include files you want ignored -# * Run: git config --global core.excludesfile ~/.gitignore -# -# After doing this, these files will be ignored in all your git projects, -# saving you from having to 'pollute' every project you touch with them -# -# Not sure what to needs to be ignored for particular editors/OSes? Here's some ideas to get you started. (Remember, remove the leading # of the line) -# -# For MacOS: -# -#.DS_Store -# -# For TextMate -#*.tmproj -#tmtags -# -# For emacs: -#*~ -#\#* -#.\#* -# -# For vim: -#*.swp +/.bundle +/.ruby-version +/.rvmrc +/Gemfile.lock +/rdoc +/pkg +/coverage +/doc +/.yardoc +gemfiles/*.lock diff --git a/.travis.yml b/.travis.yml index 403819bc..a950270d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ language: ruby sudo: false +cache: bundler rvm: - 1.8.7-p374 - 1.9.3 diff --git a/Appraisals b/Appraisals index 7b220538..1f48970f 100644 --- a/Appraisals +++ b/Appraisals @@ -20,22 +20,30 @@ appraise "rails-32" do gem "actionpack", "~> 3.2.17" gem "activeresource", "~> 3.2.17" gem "activesupport", "~> 3.2.17" + gem "httpi", "< 2.3" + gem "i18n", "< 0.7.0" + gem "rack-cache", "< 1.3" end appraise "rails-31" do gem "actionpack", "~> 3.1.0" gem "activeresource", "~> 3.1.0" gem "activesupport", "~> 3.1.0" + gem "httpi", "< 2.3" + gem "i18n", "< 0.7.0" + gem "rack-cache", "< 1.3" end appraise "rails-30" do gem "actionpack", "~> 3.0.20" gem "activeresource", "~> 3.0.20" gem "activesupport", "~> 3.0.20" + gem "httpi", "< 2.3" end appraise "rails-23" do gem "actionpack", "~> 2.3.2" gem "activeresource", "~> 2.3.2" gem "activesupport", "~> 2.3.2" + gem "httpi", "< 2.3" end diff --git a/Gemfile b/Gemfile index 851fabc2..4ddfbe6c 100644 --- a/Gemfile +++ b/Gemfile @@ -1,2 +1,5 @@ source 'https://rubygems.org' gemspec + +gem "rake", "< 11.0", :platforms => :ruby_18 +gem "tins", "< 1.7", :platforms => :ruby_19 # amatch dependency diff --git a/Gemfile.lock b/Gemfile.lock deleted file mode 100644 index def95ce7..00000000 --- a/Gemfile.lock +++ /dev/null @@ -1,115 +0,0 @@ -PATH - remote: . - specs: - api-auth (2.0.0.pre) - -GEM - remote: https://rubygems.org/ - specs: - actionpack (4.2.5) - actionview (= 4.2.5) - activesupport (= 4.2.5) - rack (~> 1.6) - rack-test (~> 0.6.2) - rails-dom-testing (~> 1.0, >= 1.0.5) - rails-html-sanitizer (~> 1.0, >= 1.0.2) - actionview (4.2.5) - activesupport (= 4.2.5) - builder (~> 3.1) - erubis (~> 2.7.0) - rails-dom-testing (~> 1.0, >= 1.0.5) - rails-html-sanitizer (~> 1.0, >= 1.0.2) - activemodel (4.2.5) - activesupport (= 4.2.5) - builder (~> 3.1) - activeresource (4.0.0) - activemodel (~> 4.0) - activesupport (~> 4.0) - rails-observers (~> 0.1.1) - activesupport (4.2.5) - i18n (~> 0.7) - json (~> 1.7, >= 1.7.7) - minitest (~> 5.1) - thread_safe (~> 0.3, >= 0.3.4) - tzinfo (~> 1.1) - amatch (0.2.10) - tins (~> 0.3) - appraisal (2.1.0) - bundler - rake - thor (>= 0.14.0) - builder (3.2.2) - curb (0.8.6) - diff-lcs (1.2.5) - erubis (2.7.0) - faraday (0.9.1) - multipart-post (>= 1.2, < 3) - httpi (2.1.0) - rack - rubyntlm (~> 0.3.2) - i18n (0.7.0) - json (1.8.3) - loofah (2.0.3) - nokogiri (>= 1.5.9) - mime-types (1.17.2) - mini_portile (0.6.2) - minitest (5.8.2) - multipart-post (2.0.0) - nokogiri (1.6.6.2) - mini_portile (~> 0.6.0) - rack (1.6.4) - rack-test (0.6.3) - rack (>= 1.0) - rails-deprecated_sanitizer (1.0.3) - activesupport (>= 4.2.0.alpha) - rails-dom-testing (1.0.7) - activesupport (>= 4.2.0.beta, < 5.0) - nokogiri (~> 1.6.0) - rails-deprecated_sanitizer (>= 1.0.1) - rails-html-sanitizer (1.0.2) - loofah (~> 2.0) - rails-observers (0.1.2) - activemodel (~> 4.0) - rake (10.4.2) - rest-client (1.6.7) - mime-types (>= 1.16) - rspec (3.4.0) - rspec-core (~> 3.4.0) - rspec-expectations (~> 3.4.0) - rspec-mocks (~> 3.4.0) - rspec-core (3.4.0) - rspec-support (~> 3.4.0) - rspec-expectations (3.4.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.4.0) - rspec-mocks (3.4.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.4.0) - rspec-support (3.4.0) - rubyntlm (0.3.4) - thor (0.19.1) - thread_safe (0.3.5) - tins (0.5.5) - tzinfo (1.2.2) - thread_safe (~> 0.1) - -PLATFORMS - ruby - -DEPENDENCIES - actionpack (> 2.3.2, < 5.0) - activeresource (~> 4.0) - activesupport (> 2.3.2, < 5.0) - amatch - api-auth! - appraisal - curb (~> 0.8.1) - faraday - httpi - multipart-post (~> 2.0) - rake - rest-client (~> 1.6.0) - rspec (~> 3.4) - -BUNDLED WITH - 1.10.6 diff --git a/gemfiles/rails_23.gemfile b/gemfiles/rails_23.gemfile index 1af67546..262a8a24 100644 --- a/gemfiles/rails_23.gemfile +++ b/gemfiles/rails_23.gemfile @@ -2,8 +2,11 @@ source "https://rubygems.org" +gem "rake", "< 11.0", :platforms => :ruby_18 +gem "tins", "< 1.7", :platforms => :ruby_19 gem "actionpack", "~> 2.3.2" gem "activeresource", "~> 2.3.2" gem "activesupport", "~> 2.3.2" +gem "httpi", "< 2.3" gemspec :path => "../" diff --git a/gemfiles/rails_23.gemfile.lock b/gemfiles/rails_23.gemfile.lock deleted file mode 100644 index 30dc5d2c..00000000 --- a/gemfiles/rails_23.gemfile.lock +++ /dev/null @@ -1,70 +0,0 @@ -PATH - remote: ../ - specs: - api-auth (2.0.0.pre) - -GEM - remote: https://rubygems.org/ - specs: - actionpack (2.3.18) - activesupport (= 2.3.18) - rack (~> 1.1.0) - activeresource (2.3.18) - activesupport (= 2.3.18) - activesupport (2.3.18) - amatch (0.3.0) - tins (~> 1.0) - appraisal (1.0.0) - bundler - rake - thor (>= 0.14.0) - curb (0.8.6) - diff-lcs (1.2.5) - faraday (0.9.1) - multipart-post (>= 1.2, < 3) - httpi (2.1.0) - rack - rubyntlm (~> 0.3.2) - mime-types (1.25.1) - multipart-post (2.0.0) - rack (1.1.6) - rake (10.3.1) - rest-client (1.6.7) - mime-types (>= 1.16) - rspec (3.4.0) - rspec-core (~> 3.4.0) - rspec-expectations (~> 3.4.0) - rspec-mocks (~> 3.4.0) - rspec-core (3.4.0) - rspec-support (~> 3.4.0) - rspec-expectations (3.4.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.4.0) - rspec-mocks (3.4.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.4.0) - rspec-support (3.4.0) - rubyntlm (0.3.4) - thor (0.19.1) - tins (1.3.0) - -PLATFORMS - ruby - -DEPENDENCIES - actionpack (~> 2.3.2) - activeresource (~> 2.3.2) - activesupport (~> 2.3.2) - amatch - api-auth! - appraisal - curb (~> 0.8.1) - faraday - httpi - multipart-post (~> 2.0) - rake - rest-client (~> 1.6.0) - rspec (~> 3.4) - -BUNDLED WITH - 1.10.6 diff --git a/gemfiles/rails_30.gemfile b/gemfiles/rails_30.gemfile index d99335be..faf40c7a 100644 --- a/gemfiles/rails_30.gemfile +++ b/gemfiles/rails_30.gemfile @@ -2,8 +2,11 @@ source "https://rubygems.org" +gem "rake", "< 11.0", :platforms => :ruby_18 +gem "tins", "< 1.7", :platforms => :ruby_19 gem "actionpack", "~> 3.0.20" gem "activeresource", "~> 3.0.20" gem "activesupport", "~> 3.0.20" +gem "httpi", "< 2.3" gemspec :path => "../" diff --git a/gemfiles/rails_30.gemfile.lock b/gemfiles/rails_30.gemfile.lock deleted file mode 100644 index 804045e2..00000000 --- a/gemfiles/rails_30.gemfile.lock +++ /dev/null @@ -1,92 +0,0 @@ -PATH - remote: ../ - specs: - api-auth (2.0.0.pre) - -GEM - remote: https://rubygems.org/ - specs: - abstract (1.0.0) - actionpack (3.0.20) - activemodel (= 3.0.20) - activesupport (= 3.0.20) - 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.20) - activesupport (= 3.0.20) - builder (~> 2.1.2) - i18n (~> 0.5.0) - activeresource (3.0.20) - activemodel (= 3.0.20) - activesupport (= 3.0.20) - activesupport (3.0.20) - amatch (0.3.0) - tins (~> 1.0) - appraisal (1.0.0) - bundler - rake - thor (>= 0.14.0) - builder (2.1.2) - curb (0.8.6) - diff-lcs (1.2.5) - erubis (2.6.6) - abstract (>= 1.0.0) - faraday (0.9.1) - multipart-post (>= 1.2, < 3) - httpi (2.1.0) - rack - rubyntlm (~> 0.3.2) - i18n (0.5.3) - mime-types (1.25.1) - multipart-post (2.0.0) - rack (1.2.8) - rack-mount (0.6.14) - rack (>= 1.0.0) - rack-test (0.5.7) - rack (>= 1.0) - rake (10.3.1) - rest-client (1.6.7) - mime-types (>= 1.16) - rspec (3.4.0) - rspec-core (~> 3.4.0) - rspec-expectations (~> 3.4.0) - rspec-mocks (~> 3.4.0) - rspec-core (3.4.0) - rspec-support (~> 3.4.0) - rspec-expectations (3.4.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.4.0) - rspec-mocks (3.4.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.4.0) - rspec-support (3.4.0) - rubyntlm (0.3.4) - thor (0.19.1) - tins (1.3.0) - tzinfo (0.3.39) - -PLATFORMS - ruby - -DEPENDENCIES - actionpack (~> 3.0.20) - activeresource (~> 3.0.20) - activesupport (~> 3.0.20) - amatch - api-auth! - appraisal - curb (~> 0.8.1) - faraday - httpi - multipart-post (~> 2.0) - rake - rest-client (~> 1.6.0) - rspec (~> 3.4) - -BUNDLED WITH - 1.10.6 diff --git a/gemfiles/rails_31.gemfile b/gemfiles/rails_31.gemfile index eeb0eff3..0dc23179 100644 --- a/gemfiles/rails_31.gemfile +++ b/gemfiles/rails_31.gemfile @@ -2,8 +2,13 @@ source "https://rubygems.org" +gem "rake", "< 11.0", :platforms => :ruby_18 +gem "tins", "< 1.7", :platforms => :ruby_19 gem "actionpack", "~> 3.1.0" gem "activeresource", "~> 3.1.0" gem "activesupport", "~> 3.1.0" +gem "httpi", "< 2.3" +gem "i18n", "< 0.7.0" +gem "rack-cache", "< 1.3" gemspec :path => "../" diff --git a/gemfiles/rails_31.gemfile.lock b/gemfiles/rails_31.gemfile.lock deleted file mode 100644 index a1a3b7c9..00000000 --- a/gemfiles/rails_31.gemfile.lock +++ /dev/null @@ -1,98 +0,0 @@ -PATH - remote: ../ - specs: - api-auth (2.0.0.pre) - -GEM - remote: https://rubygems.org/ - specs: - actionpack (3.1.12) - activemodel (= 3.1.12) - activesupport (= 3.1.12) - 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.12) - activesupport (= 3.1.12) - builder (~> 3.0.0) - i18n (~> 0.6) - activeresource (3.1.12) - activemodel (= 3.1.12) - activesupport (= 3.1.12) - activesupport (3.1.12) - multi_json (~> 1.0) - amatch (0.2.11) - tins (~> 0.3) - appraisal (0.5.2) - bundler - rake - builder (3.0.4) - curb (0.8.6) - diff-lcs (1.2.5) - erubis (2.7.0) - faraday (0.9.1) - multipart-post (>= 1.2, < 3) - hike (1.2.3) - httpi (2.1.0) - rack - rubyntlm (~> 0.3.2) - i18n (0.6.9) - mime-types (1.25.1) - multi_json (1.9.2) - multipart-post (2.0.0) - rack (1.3.10) - rack-cache (1.2) - rack (>= 0.4) - rack-mount (0.8.3) - rack (>= 1.0.0) - rack-test (0.6.2) - rack (>= 1.0) - rake (10.1.1) - rest-client (1.6.7) - mime-types (>= 1.16) - rspec (3.4.0) - rspec-core (~> 3.4.0) - rspec-expectations (~> 3.4.0) - rspec-mocks (~> 3.4.0) - rspec-core (3.4.0) - rspec-support (~> 3.4.0) - rspec-expectations (3.4.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.4.0) - rspec-mocks (3.4.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.4.0) - rspec-support (3.4.0) - rubyntlm (0.3.4) - sprockets (2.0.4) - hike (~> 1.2) - rack (~> 1.0) - tilt (~> 1.1, != 1.3.0) - tilt (1.4.1) - tins (0.13.2) - -PLATFORMS - ruby - -DEPENDENCIES - actionpack (~> 3.1.0) - activeresource (~> 3.1.0) - activesupport (~> 3.1.0) - amatch - api-auth! - appraisal - curb (~> 0.8.1) - faraday - httpi - multipart-post (~> 2.0) - rake - rest-client (~> 1.6.0) - rspec (~> 3.4) - -BUNDLED WITH - 1.10.6 diff --git a/gemfiles/rails_32.gemfile b/gemfiles/rails_32.gemfile index cfaaeffa..f3b1e202 100644 --- a/gemfiles/rails_32.gemfile +++ b/gemfiles/rails_32.gemfile @@ -2,8 +2,13 @@ source "https://rubygems.org" +gem "rake", "< 11.0", :platforms => :ruby_18 +gem "tins", "< 1.7", :platforms => :ruby_19 gem "actionpack", "~> 3.2.17" gem "activeresource", "~> 3.2.17" gem "activesupport", "~> 3.2.17" +gem "httpi", "< 2.3" +gem "i18n", "< 0.7.0" +gem "rack-cache", "< 1.3" gemspec :path => "../" diff --git a/gemfiles/rails_32.gemfile.lock b/gemfiles/rails_32.gemfile.lock deleted file mode 100644 index 46c7d02a..00000000 --- a/gemfiles/rails_32.gemfile.lock +++ /dev/null @@ -1,97 +0,0 @@ -PATH - remote: ../ - specs: - api-auth (2.0.0.pre) - -GEM - remote: https://rubygems.org/ - specs: - actionpack (3.2.17) - activemodel (= 3.2.17) - activesupport (= 3.2.17) - builder (~> 3.0.0) - erubis (~> 2.7.0) - journey (~> 1.0.4) - rack (~> 1.4.5) - rack-cache (~> 1.2) - rack-test (~> 0.6.1) - sprockets (~> 2.2.1) - activemodel (3.2.17) - activesupport (= 3.2.17) - builder (~> 3.0.0) - activeresource (3.2.17) - activemodel (= 3.2.17) - activesupport (= 3.2.17) - activesupport (3.2.17) - i18n (~> 0.6, >= 0.6.4) - multi_json (~> 1.0) - amatch (0.2.11) - tins (~> 0.3) - appraisal (0.5.2) - bundler - rake - builder (3.0.4) - curb (0.8.6) - diff-lcs (1.2.5) - erubis (2.7.0) - faraday (0.9.1) - multipart-post (>= 1.2, < 3) - hike (1.2.3) - httpi (2.1.0) - rack - rubyntlm (~> 0.3.2) - i18n (0.6.9) - journey (1.0.4) - mime-types (1.25.1) - multi_json (1.9.2) - multipart-post (2.0.0) - rack (1.4.5) - rack-cache (1.2) - rack (>= 0.4) - rack-test (0.6.2) - rack (>= 1.0) - rake (10.1.1) - rest-client (1.6.7) - mime-types (>= 1.16) - rspec (3.4.0) - rspec-core (~> 3.4.0) - rspec-expectations (~> 3.4.0) - rspec-mocks (~> 3.4.0) - rspec-core (3.4.0) - rspec-support (~> 3.4.0) - rspec-expectations (3.4.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.4.0) - rspec-mocks (3.4.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.4.0) - rspec-support (3.4.0) - rubyntlm (0.3.4) - sprockets (2.2.2) - hike (~> 1.2) - multi_json (~> 1.0) - rack (~> 1.0) - tilt (~> 1.1, != 1.3.0) - tilt (1.4.1) - tins (0.13.2) - -PLATFORMS - ruby - -DEPENDENCIES - actionpack (~> 3.2.17) - activeresource (~> 3.2.17) - activesupport (~> 3.2.17) - amatch - api-auth! - appraisal - curb (~> 0.8.1) - faraday - httpi - multipart-post (~> 2.0) - rake - rest-client (~> 1.6.0) - rspec (~> 3.4) - -BUNDLED WITH - 1.10.6 diff --git a/gemfiles/rails_4.gemfile b/gemfiles/rails_4.gemfile index 742f95fa..b766e155 100644 --- a/gemfiles/rails_4.gemfile +++ b/gemfiles/rails_4.gemfile @@ -2,6 +2,8 @@ source "https://rubygems.org" +gem "rake", "< 11.0", :platforms => :ruby_18 +gem "tins", "< 1.7", :platforms => :ruby_19 gem "actionpack", "~> 4.0.4" gem "activeresource", "~> 4.0.0" gem "activesupport", "~> 4.0.4" diff --git a/gemfiles/rails_4.gemfile.lock b/gemfiles/rails_4.gemfile.lock deleted file mode 100644 index d83f2001..00000000 --- a/gemfiles/rails_4.gemfile.lock +++ /dev/null @@ -1,94 +0,0 @@ -PATH - remote: ../ - specs: - api-auth (2.0.0.pre) - -GEM - remote: https://rubygems.org/ - specs: - actionpack (4.0.4) - activesupport (= 4.0.4) - builder (~> 3.1.0) - erubis (~> 2.7.0) - rack (~> 1.5.2) - rack-test (~> 0.6.2) - activemodel (4.0.4) - activesupport (= 4.0.4) - builder (~> 3.1.0) - activeresource (4.0.0) - activemodel (~> 4.0) - activesupport (~> 4.0) - rails-observers (~> 0.1.1) - activesupport (4.0.4) - i18n (~> 0.6, >= 0.6.9) - minitest (~> 4.2) - multi_json (~> 1.3) - thread_safe (~> 0.1) - tzinfo (~> 0.3.37) - amatch (0.2.11) - tins (~> 0.3) - appraisal (0.5.2) - bundler - rake - atomic (1.1.16) - builder (3.1.4) - curb (0.8.6) - diff-lcs (1.2.5) - erubis (2.7.0) - faraday (0.9.1) - multipart-post (>= 1.2, < 3) - httpi (2.1.0) - rack - rubyntlm (~> 0.3.2) - i18n (0.6.9) - mime-types (2.2) - minitest (4.7.5) - multi_json (1.9.2) - multipart-post (2.0.0) - rack (1.5.2) - rack-test (0.6.2) - rack (>= 1.0) - rails-observers (0.1.2) - activemodel (~> 4.0) - rake (10.1.1) - rest-client (1.6.7) - mime-types (>= 1.16) - rspec (3.4.0) - rspec-core (~> 3.4.0) - rspec-expectations (~> 3.4.0) - rspec-mocks (~> 3.4.0) - rspec-core (3.4.0) - rspec-support (~> 3.4.0) - rspec-expectations (3.4.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.4.0) - rspec-mocks (3.4.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.4.0) - rspec-support (3.4.0) - rubyntlm (0.3.4) - thread_safe (0.2.0) - atomic (>= 1.1.7, < 2) - tins (0.13.2) - tzinfo (0.3.39) - -PLATFORMS - ruby - -DEPENDENCIES - actionpack (~> 4.0.4) - activeresource (~> 4.0.0) - activesupport (~> 4.0.4) - amatch - api-auth! - appraisal - curb (~> 0.8.1) - faraday - httpi - multipart-post (~> 2.0) - rake - rest-client (~> 1.6.0) - rspec (~> 3.4) - -BUNDLED WITH - 1.10.6 diff --git a/gemfiles/rails_41.gemfile b/gemfiles/rails_41.gemfile index ec5bc0b1..6f460da8 100644 --- a/gemfiles/rails_41.gemfile +++ b/gemfiles/rails_41.gemfile @@ -2,6 +2,8 @@ source "https://rubygems.org" +gem "rake", "< 11.0", :platforms => :ruby_18 +gem "tins", "< 1.7", :platforms => :ruby_19 gem "actionpack", "~> 4.1.0" gem "activeresource", "~> 4.0.0" gem "activesupport", "~> 4.1.0" diff --git a/gemfiles/rails_41.gemfile.lock b/gemfiles/rails_41.gemfile.lock deleted file mode 100644 index 4f1a3614..00000000 --- a/gemfiles/rails_41.gemfile.lock +++ /dev/null @@ -1,98 +0,0 @@ -PATH - remote: ../ - specs: - api-auth (2.0.0.pre) - -GEM - remote: https://rubygems.org/ - specs: - actionpack (4.1.1) - actionview (= 4.1.1) - activesupport (= 4.1.1) - rack (~> 1.5.2) - rack-test (~> 0.6.2) - actionview (4.1.1) - activesupport (= 4.1.1) - builder (~> 3.1) - erubis (~> 2.7.0) - activemodel (4.1.1) - activesupport (= 4.1.1) - builder (~> 3.1) - activeresource (4.0.0) - activemodel (~> 4.0) - activesupport (~> 4.0) - rails-observers (~> 0.1.1) - activesupport (4.1.1) - i18n (~> 0.6, >= 0.6.9) - json (~> 1.7, >= 1.7.7) - minitest (~> 5.1) - thread_safe (~> 0.1) - tzinfo (~> 1.1) - amatch (0.3.0) - tins (~> 1.0) - appraisal (1.0.0) - bundler - rake - thor (>= 0.14.0) - builder (3.2.2) - curb (0.8.6) - diff-lcs (1.2.5) - erubis (2.7.0) - faraday (0.9.1) - multipart-post (>= 1.2, < 3) - httpi (2.1.0) - rack - rubyntlm (~> 0.3.2) - i18n (0.6.9) - json (1.8.1) - mime-types (2.2) - minitest (5.3.4) - multipart-post (2.0.0) - rack (1.5.2) - rack-test (0.6.2) - rack (>= 1.0) - rails-observers (0.1.2) - activemodel (~> 4.0) - rake (10.3.2) - rest-client (1.6.7) - mime-types (>= 1.16) - rspec (3.4.0) - rspec-core (~> 3.4.0) - rspec-expectations (~> 3.4.0) - rspec-mocks (~> 3.4.0) - rspec-core (3.4.0) - rspec-support (~> 3.4.0) - rspec-expectations (3.4.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.4.0) - rspec-mocks (3.4.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.4.0) - rspec-support (3.4.0) - rubyntlm (0.3.4) - thor (0.19.1) - thread_safe (0.3.3) - tins (1.3.0) - tzinfo (1.1.0) - thread_safe (~> 0.1) - -PLATFORMS - ruby - -DEPENDENCIES - actionpack (~> 4.1.0) - activeresource (~> 4.0.0) - activesupport (~> 4.1.0) - amatch - api-auth! - appraisal - curb (~> 0.8.1) - faraday - httpi - multipart-post (~> 2.0) - rake - rest-client (~> 1.6.0) - rspec (~> 3.4) - -BUNDLED WITH - 1.10.6 diff --git a/gemfiles/rails_42.gemfile b/gemfiles/rails_42.gemfile index c34543ea..d75c803e 100644 --- a/gemfiles/rails_42.gemfile +++ b/gemfiles/rails_42.gemfile @@ -2,6 +2,8 @@ source "https://rubygems.org" +gem "rake", "< 11.0", :platforms => :ruby_18 +gem "tins", "< 1.7", :platforms => :ruby_19 gem "actionpack", "~> 4.2.0" gem "activeresource", "~> 4.0.0" gem "activesupport", "~> 4.2.0" diff --git a/gemfiles/rails_42.gemfile.lock b/gemfiles/rails_42.gemfile.lock deleted file mode 100644 index 58dd4c01..00000000 --- a/gemfiles/rails_42.gemfile.lock +++ /dev/null @@ -1,115 +0,0 @@ -PATH - remote: ../ - specs: - api-auth (2.0.0.pre) - -GEM - remote: https://rubygems.org/ - specs: - actionpack (4.2.5) - actionview (= 4.2.5) - activesupport (= 4.2.5) - rack (~> 1.6) - rack-test (~> 0.6.2) - rails-dom-testing (~> 1.0, >= 1.0.5) - rails-html-sanitizer (~> 1.0, >= 1.0.2) - actionview (4.2.5) - activesupport (= 4.2.5) - builder (~> 3.1) - erubis (~> 2.7.0) - rails-dom-testing (~> 1.0, >= 1.0.5) - rails-html-sanitizer (~> 1.0, >= 1.0.2) - activemodel (4.2.5) - activesupport (= 4.2.5) - builder (~> 3.1) - activeresource (4.0.0) - activemodel (~> 4.0) - activesupport (~> 4.0) - rails-observers (~> 0.1.1) - activesupport (4.2.5) - i18n (~> 0.7) - json (~> 1.7, >= 1.7.7) - minitest (~> 5.1) - thread_safe (~> 0.3, >= 0.3.4) - tzinfo (~> 1.1) - amatch (0.3.0) - tins (~> 1.0) - appraisal (1.0.0) - bundler - rake - thor (>= 0.14.0) - builder (3.2.2) - curb (0.8.6) - diff-lcs (1.2.5) - erubis (2.7.0) - faraday (0.9.1) - multipart-post (>= 1.2, < 3) - httpi (2.1.0) - rack - rubyntlm (~> 0.3.2) - i18n (0.7.0) - json (1.8.3) - loofah (2.0.3) - nokogiri (>= 1.5.9) - mime-types (2.6.2) - mini_portile (0.6.2) - minitest (5.8.2) - multipart-post (2.0.0) - nokogiri (1.6.6.2) - mini_portile (~> 0.6.0) - rack (1.6.4) - rack-test (0.6.3) - rack (>= 1.0) - rails-deprecated_sanitizer (1.0.3) - activesupport (>= 4.2.0.alpha) - rails-dom-testing (1.0.7) - activesupport (>= 4.2.0.beta, < 5.0) - nokogiri (~> 1.6.0) - rails-deprecated_sanitizer (>= 1.0.1) - rails-html-sanitizer (1.0.2) - loofah (~> 2.0) - rails-observers (0.1.2) - activemodel (~> 4.0) - rake (10.4.2) - rest-client (1.6.7) - mime-types (>= 1.16) - rspec (3.4.0) - rspec-core (~> 3.4.0) - rspec-expectations (~> 3.4.0) - rspec-mocks (~> 3.4.0) - rspec-core (3.4.0) - rspec-support (~> 3.4.0) - rspec-expectations (3.4.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.4.0) - rspec-mocks (3.4.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.4.0) - rspec-support (3.4.0) - rubyntlm (0.3.4) - thor (0.19.1) - thread_safe (0.3.5) - tins (1.6.0) - tzinfo (1.2.2) - thread_safe (~> 0.1) - -PLATFORMS - ruby - -DEPENDENCIES - actionpack (~> 4.2.0) - activeresource (~> 4.0.0) - activesupport (~> 4.2.0) - amatch - api-auth! - appraisal - curb (~> 0.8.1) - faraday - httpi - multipart-post (~> 2.0) - rake - rest-client (~> 1.6.0) - rspec (~> 3.4) - -BUNDLED WITH - 1.10.6