Skip to content

Commit

Permalink
Add appraisal config.
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis Mendo committed Sep 11, 2015
1 parent 1ea47a5 commit 22a9599
Show file tree
Hide file tree
Showing 7 changed files with 518 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
appraise "rails-4-0" do
gem "rails", "4.0.13"
end

appraise "rails-4-1" do
gem "rails", "4.1.13"
end

appraise "rails-4-2" do
gem "rails", "4.2.3"
end
20 changes: 20 additions & 0 deletions gemfiles/rails_4_0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rails", "4.0.13"

group :development, :test do
gem "faker"
gem "carrierwave"
end

group :test do
gem "rspec-rails", "~> 3.0.0.beta"
gem "factory_girl"
gem "capybara"
gem "database_cleaner"
gem "appraisal"
end

gemspec :path => "../"
139 changes: 139 additions & 0 deletions gemfiles/rails_4_0.gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,139 @@
PATH
remote: ../
specs:
nocms-pages (0.1.0)
awesome_nested_set (>= 3.0.0.rc.6)
globalize (>= 4.0.0, < 5.1)
nocms-blocks (~> 1.1.1)
rails (~> 4.0, >= 4.0.3)

GEM
remote: https://rubygems.org/
specs:
actionmailer (4.0.13)
actionpack (= 4.0.13)
mail (~> 2.5, >= 2.5.4)
actionpack (4.0.13)
activesupport (= 4.0.13)
builder (~> 3.1.0)
erubis (~> 2.7.0)
rack (~> 1.5.2)
rack-test (~> 0.6.2)
activemodel (4.0.13)
activesupport (= 4.0.13)
builder (~> 3.1.0)
activerecord (4.0.13)
activemodel (= 4.0.13)
activerecord-deprecated_finders (~> 1.0.2)
activesupport (= 4.0.13)
arel (~> 4.0.0)
activerecord-deprecated_finders (1.0.4)
activesupport (4.0.13)
i18n (~> 0.6, >= 0.6.9)
minitest (~> 4.2)
multi_json (~> 1.3)
thread_safe (~> 0.1)
tzinfo (~> 0.3.37)
appraisal (2.1.0)
bundler
rake
thor (>= 0.14.0)
arel (4.0.2)
awesome_nested_set (3.0.2)
activerecord (>= 4.0.0, < 5)
builder (3.1.4)
capybara (2.5.0)
mime-types (>= 1.16)
nokogiri (>= 1.3.3)
rack (>= 1.0.0)
rack-test (>= 0.5.4)
xpath (~> 2.0)
carrierwave (0.10.0)
activemodel (>= 3.2.0)
activesupport (>= 3.2.0)
json (>= 1.7)
mime-types (>= 1.16)
database_cleaner (1.5.0)
diff-lcs (1.2.5)
erubis (2.7.0)
factory_girl (4.5.0)
activesupport (>= 3.0.0)
faker (1.5.0)
i18n (~> 0.5)
globalize (4.0.3)
activemodel (>= 4.0.0, < 5)
activerecord (>= 4.0.0, < 5)
i18n (0.7.0)
json (1.8.3)
mail (2.6.3)
mime-types (>= 1.16, < 3)
mime-types (2.6.1)
mini_portile (0.6.2)
minitest (4.7.5)
multi_json (1.11.2)
nocms-blocks (1.1.1)
awesome_nested_set (~> 3.0.0)
globalize (>= 4.0.0, < 5.1)
rails (~> 4.0, <= 4.2.3)
nokogiri (1.6.6.2)
mini_portile (~> 0.6.0)
rack (1.5.5)
rack-test (0.6.3)
rack (>= 1.0)
rails (4.0.13)
actionmailer (= 4.0.13)
actionpack (= 4.0.13)
activerecord (= 4.0.13)
activesupport (= 4.0.13)
bundler (>= 1.3.0, < 2.0)
railties (= 4.0.13)
sprockets-rails (~> 2.0)
railties (4.0.13)
actionpack (= 4.0.13)
activesupport (= 4.0.13)
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
rake (10.4.2)
rspec-core (3.0.4)
rspec-support (~> 3.0.0)
rspec-expectations (3.0.4)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.0.0)
rspec-mocks (3.0.4)
rspec-support (~> 3.0.0)
rspec-rails (3.0.2)
actionpack (>= 3.0)
activesupport (>= 3.0)
railties (>= 3.0)
rspec-core (~> 3.0.0)
rspec-expectations (~> 3.0.0)
rspec-mocks (~> 3.0.0)
rspec-support (~> 3.0.0)
rspec-support (3.0.4)
sprockets (3.3.4)
rack (~> 1.0)
sprockets-rails (2.3.3)
actionpack (>= 3.0)
activesupport (>= 3.0)
sprockets (>= 2.8, < 4.0)
sqlite3 (1.3.10)
thor (0.19.1)
thread_safe (0.3.5)
tzinfo (0.3.44)
xpath (2.0.0)
nokogiri (~> 1.3)

PLATFORMS
ruby

DEPENDENCIES
appraisal
capybara
carrierwave
database_cleaner
factory_girl
faker
nocms-pages!
rails (= 4.0.13)
rspec-rails (~> 3.0.0.beta)
sqlite3
20 changes: 20 additions & 0 deletions gemfiles/rails_4_1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rails", "4.1.13"

group :development, :test do
gem "faker"
gem "carrierwave"
end

group :test do
gem "rspec-rails", "~> 3.0.0.beta"
gem "factory_girl"
gem "capybara"
gem "database_cleaner"
gem "appraisal"
end

gemspec :path => "../"
143 changes: 143 additions & 0 deletions gemfiles/rails_4_1.gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,143 @@
PATH
remote: ../
specs:
nocms-pages (0.1.0)
awesome_nested_set (>= 3.0.0.rc.6)
globalize (>= 4.0.0, < 5.1)
nocms-blocks (~> 1.1.1)
rails (~> 4.0, >= 4.0.3)

GEM
remote: https://rubygems.org/
specs:
actionmailer (4.1.13)
actionpack (= 4.1.13)
actionview (= 4.1.13)
mail (~> 2.5, >= 2.5.4)
actionpack (4.1.13)
actionview (= 4.1.13)
activesupport (= 4.1.13)
rack (~> 1.5.2)
rack-test (~> 0.6.2)
actionview (4.1.13)
activesupport (= 4.1.13)
builder (~> 3.1)
erubis (~> 2.7.0)
activemodel (4.1.13)
activesupport (= 4.1.13)
builder (~> 3.1)
activerecord (4.1.13)
activemodel (= 4.1.13)
activesupport (= 4.1.13)
arel (~> 5.0.0)
activesupport (4.1.13)
i18n (~> 0.6, >= 0.6.9)
json (~> 1.7, >= 1.7.7)
minitest (~> 5.1)
thread_safe (~> 0.1)
tzinfo (~> 1.1)
appraisal (2.1.0)
bundler
rake
thor (>= 0.14.0)
arel (5.0.1.20140414130214)
awesome_nested_set (3.0.2)
activerecord (>= 4.0.0, < 5)
builder (3.2.2)
capybara (2.5.0)
mime-types (>= 1.16)
nokogiri (>= 1.3.3)
rack (>= 1.0.0)
rack-test (>= 0.5.4)
xpath (~> 2.0)
carrierwave (0.10.0)
activemodel (>= 3.2.0)
activesupport (>= 3.2.0)
json (>= 1.7)
mime-types (>= 1.16)
database_cleaner (1.5.0)
diff-lcs (1.2.5)
erubis (2.7.0)
factory_girl (4.5.0)
activesupport (>= 3.0.0)
faker (1.5.0)
i18n (~> 0.5)
globalize (4.0.3)
activemodel (>= 4.0.0, < 5)
activerecord (>= 4.0.0, < 5)
i18n (0.7.0)
json (1.8.3)
mail (2.6.3)
mime-types (>= 1.16, < 3)
mime-types (2.6.1)
mini_portile (0.6.2)
minitest (5.8.0)
nocms-blocks (1.1.1)
awesome_nested_set (~> 3.0.0)
globalize (>= 4.0.0, < 5.1)
rails (~> 4.0, <= 4.2.3)
nokogiri (1.6.6.2)
mini_portile (~> 0.6.0)
rack (1.5.5)
rack-test (0.6.3)
rack (>= 1.0)
rails (4.1.13)
actionmailer (= 4.1.13)
actionpack (= 4.1.13)
actionview (= 4.1.13)
activemodel (= 4.1.13)
activerecord (= 4.1.13)
activesupport (= 4.1.13)
bundler (>= 1.3.0, < 2.0)
railties (= 4.1.13)
sprockets-rails (~> 2.0)
railties (4.1.13)
actionpack (= 4.1.13)
activesupport (= 4.1.13)
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
rake (10.4.2)
rspec-core (3.0.4)
rspec-support (~> 3.0.0)
rspec-expectations (3.0.4)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.0.0)
rspec-mocks (3.0.4)
rspec-support (~> 3.0.0)
rspec-rails (3.0.2)
actionpack (>= 3.0)
activesupport (>= 3.0)
railties (>= 3.0)
rspec-core (~> 3.0.0)
rspec-expectations (~> 3.0.0)
rspec-mocks (~> 3.0.0)
rspec-support (~> 3.0.0)
rspec-support (3.0.4)
sprockets (3.3.4)
rack (~> 1.0)
sprockets-rails (2.3.3)
actionpack (>= 3.0)
activesupport (>= 3.0)
sprockets (>= 2.8, < 4.0)
sqlite3 (1.3.10)
thor (0.19.1)
thread_safe (0.3.5)
tzinfo (1.2.2)
thread_safe (~> 0.1)
xpath (2.0.0)
nokogiri (~> 1.3)

PLATFORMS
ruby

DEPENDENCIES
appraisal
capybara
carrierwave
database_cleaner
factory_girl
faker
nocms-pages!
rails (= 4.1.13)
rspec-rails (~> 3.0.0.beta)
sqlite3
20 changes: 20 additions & 0 deletions gemfiles/rails_4_2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rails", "4.2.3"

group :development, :test do
gem "faker"
gem "carrierwave"
end

group :test do
gem "rspec-rails", "~> 3.0.0.beta"
gem "factory_girl"
gem "capybara"
gem "database_cleaner"
gem "appraisal"
end

gemspec :path => "../"
Loading

0 comments on commit 22a9599

Please sign in to comment.