1
0
Fork 0
mirror of https://github.com/thoughtbot/shoulda-matchers.git synced 2022-11-09 12:01:38 -05:00

Update test versions and dependencies (#1269)

This commit is contained in:
Gui Vieira 2020-01-01 12:20:50 -08:00 committed by GitHub
parent 94b5b2a852
commit d97bdd6cab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 607 additions and 679 deletions

View file

@ -7,24 +7,25 @@ env:
- DATABASE_ADAPTER=sqlite3 - DATABASE_ADAPTER=sqlite3
- DATABASE_ADAPTER=postgresql - DATABASE_ADAPTER=postgresql
rvm: rvm:
- 2.4.6 - 2.6.5
- 2.5.5 - 2.5.7
- 2.6.3 - 2.4.9
gemfile: gemfile:
- gemfiles/rails_4_2.gemfile
- gemfiles/rails_5_0.gemfile
- gemfiles/rails_5_1.gemfile
- gemfiles/rails_5_2.gemfile
- gemfiles/rails_6_0.gemfile - gemfiles/rails_6_0.gemfile
- gemfiles/rails_5_2.gemfile
- gemfiles/rails_5_1.gemfile
- gemfiles/rails_5_0.gemfile
- gemfiles/rails_4_2.gemfile
matrix: matrix:
exclude: exclude:
- rvm: 2.4.6 - rvm: 2.6.5
gemfile: gemfiles/rails_6_0.gemfile
- rvm: 2.6.3
gemfile: gemfiles/rails_4_2.gemfile gemfile: gemfiles/rails_4_2.gemfile
- rvm: 2.4.9
gemfile: gemfiles/rails_6_0.gemfile
cache: bundler cache: bundler
# Source: <https://docs.travis-ci.com/user/languages/ruby/#bundler-20> # Source: <https://docs.travis-ci.com/user/languages/ruby/#bundler-20>
before_install: before_install:
- nvm install 12
- gem update --system '2.7.8' --no-document - gem update --system '2.7.8' --no-document
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true - gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
- gem install bundler -v '< 2' --no-document - gem install bundler -v '< 2' --no-document

View file

@ -3,16 +3,9 @@
# best to keep the gems here in the same order as they're listed there so you # best to keep the gems here in the same order as they're listed there so you
# can compare them more easily. # can compare them more easily.
shared_jruby_dependencies = proc do # Needed for Rails 5+ controller tests
gem 'activerecord-jdbc-adapter', platform: :jruby controller_test_dependency = proc do
gem 'activerecord-jdbcsqlite3-adapter', platform: :jruby gem 'rails-controller-testing', '>= 1.0.1'
gem 'jdbc-sqlite3', platform: :jruby
gem 'jruby-openssl', platform: :jruby
gem 'therubyrhino', platform: :jruby
end
shared_rails_dependencies = proc do
gem 'sqlite3', '~> 1.3.6', platform: :ruby
end end
shared_spring_dependencies = proc do shared_spring_dependencies = proc do
@ -21,13 +14,11 @@ shared_spring_dependencies = proc do
end end
shared_test_dependencies = proc do shared_test_dependencies = proc do
gem 'rspec-rails', '~> 3.6' gem 'rspec-rails', '~> 3.9'
gem 'shoulda-context', '~> 1.2.0' gem 'shoulda-context', '~> 1.2.0'
end end
shared_dependencies = proc do shared_dependencies = proc do
instance_eval(&shared_jruby_dependencies)
instance_eval(&shared_rails_dependencies)
instance_eval(&shared_spring_dependencies) instance_eval(&shared_spring_dependencies)
instance_eval(&shared_test_dependencies) instance_eval(&shared_test_dependencies)
end end
@ -35,7 +26,7 @@ end
appraise 'rails_4_2' do appraise 'rails_4_2' do
instance_eval(&shared_dependencies) instance_eval(&shared_dependencies)
gem 'rails', '~> 4.2.11.1' gem 'rails', '4.2.11.1'
gem 'sass-rails', '~> 5.0' gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0' gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0' gem 'coffee-rails', '~> 4.1.0'
@ -49,14 +40,17 @@ appraise 'rails_4_2' do
gem 'activeresource', '4.0.0' gem 'activeresource', '4.0.0'
gem 'json', '~> 1.4' gem 'json', '~> 1.4'
gem 'protected_attributes', '~> 1.0.6' gem 'protected_attributes', '~> 1.0.6'
gem 'pg', '~> 0.15', platform: :ruby
# Database adapters
gem 'pg', '~> 0.18'
gem 'sqlite3', '~> 1.3.6'
end end
appraise 'rails_5_0' do appraise 'rails_5_0' do
instance_eval(&shared_dependencies) instance_eval(&shared_dependencies)
instance_eval(&controller_test_dependency)
gem 'rails', '~> 5.0.7.2' gem 'rails', '5.0.7.2'
gem 'rails-controller-testing', '>= 1.0.1'
gem 'puma', '~> 3.0' gem 'puma', '~> 3.0'
gem 'sass-rails', '~> 5.0' gem 'sass-rails', '~> 5.0'
gem 'jquery-rails' gem 'jquery-rails'
@ -66,15 +60,16 @@ appraise 'rails_5_0' do
gem 'listen', '~> 3.0.5' gem 'listen', '~> 3.0.5'
gem 'spring-watcher-listen', '~> 2.0.0' gem 'spring-watcher-listen', '~> 2.0.0'
# Other dependencies # Database adapters
gem 'pg', '~> 1.1', platform: :ruby gem 'pg', '~> 0.18'
gem 'sqlite3', '~> 1.3.6'
end end
appraise 'rails_5_1' do appraise 'rails_5_1' do
instance_eval(&shared_dependencies) instance_eval(&shared_dependencies)
instance_eval(&controller_test_dependency)
gem 'rails', '~> 5.1.6.2' gem 'rails', '5.1.7'
gem 'rails-controller-testing', '>= 1.0.1'
gem 'puma', '~> 3.7' gem 'puma', '~> 3.7'
gem 'sass-rails', '~> 5.0' gem 'sass-rails', '~> 5.0'
gem 'turbolinks', '~> 5' gem 'turbolinks', '~> 5'
@ -85,15 +80,16 @@ appraise 'rails_5_1' do
gem 'listen', '>= 3.0.5', '< 3.2' gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring-watcher-listen', '~> 2.0.0' gem 'spring-watcher-listen', '~> 2.0.0'
# Other dependencies # Database adapters
gem 'pg', '~> 1.1', platform: :ruby gem 'pg', '~> 0.18'
gem 'sqlite3', '~> 1.3.6'
end end
appraise 'rails_5_2' do appraise 'rails_5_2' do
instance_eval(&shared_dependencies) instance_eval(&shared_dependencies)
instance_eval(&controller_test_dependency)
gem 'rails', '~> 5.2.2.1' gem 'rails', '5.2.4.1'
gem 'rails-controller-testing', '>= 1.0.1'
gem 'puma', '~> 3.11' gem 'puma', '~> 3.11'
gem 'bootsnap', '>= 1.1.0', require: false gem 'bootsnap', '>= 1.1.0', require: false
gem 'sass-rails', '~> 5.0' gem 'sass-rails', '~> 5.0'
@ -106,30 +102,32 @@ appraise 'rails_5_2' do
gem 'listen', '>= 3.0.5', '< 3.2' gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring-watcher-listen', '~> 2.0.0' gem 'spring-watcher-listen', '~> 2.0.0'
# Other dependencies # Database adapters
gem 'pg', '~> 1.1', platform: :ruby gem 'pg', '~> 0.18'
gem 'sqlite3', '~> 1.3.6'
end end
if Gem::Requirement.new('>= 2.5.0').satisfied_by?(Gem::Version.new(RUBY_VERSION)) if Gem::Requirement.new('>= 2.5.0').satisfied_by?(Gem::Version.new(RUBY_VERSION))
appraise 'rails_6_0' do appraise 'rails_6_0' do
instance_eval(&shared_dependencies) instance_eval(&shared_dependencies)
instance_eval(&controller_test_dependency)
gem 'rails', '~> 6.0.0.beta3' gem 'rails', '6.0.2.1'
gem 'puma', '~> 3.11' gem 'puma', '~> 4.1'
gem 'bootsnap', '>= 1.4.1', require: false gem 'bootsnap', '>= 1.4.2', require: false
gem 'sass-rails', '~> 5.0' gem 'sass-rails', '>= 6'
gem 'webpacker', '>= 4.0.0.rc3' gem 'webpacker', '~> 4.0'
gem 'turbolinks', '~> 5' gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5' gem 'jbuilder', '~> 2.7'
gem 'bcrypt', '~> 3.1.7' gem 'bcrypt', '~> 3.1.7'
gem 'capybara', '>= 2.15' gem 'capybara', '>= 2.15'
gem 'listen', '>= 3.0.5', '< 3.2' gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring-watcher-listen', '~> 2.0.0' gem 'spring-watcher-listen', '~> 2.0.0'
gem 'selenium-webdriver' gem 'selenium-webdriver'
gem 'chromedriver-helper' gem 'webdrivers'
# Other dependencies # Database adapters
gem 'rails-controller-testing', '>= 1.0.1' gem 'pg', '>= 0.18', '< 2.0'
gem 'pg', '~> 1.1', platform: :ruby gem 'sqlite3', '~> 1.4'
end end
end end

View file

@ -6,8 +6,8 @@ gem "appraisal", "2.2.0"
gem "bundler", "~> 1.1" gem "bundler", "~> 1.1"
gem "pry" gem "pry"
gem "pry-byebug" gem "pry-byebug"
gem "rake", "12.3.2" gem "rake", "13.0.1"
gem "rspec", "~> 3.6" gem "rspec", "~> 3.9"
gem "rubocop", require: false gem "rubocop", require: false
gem "rubocop-rails", require: false gem "rubocop-rails", require: false
gem "zeus", require: false gem "zeus", require: false
@ -15,17 +15,11 @@ gem "fssm"
gem "pygments.rb" gem "pygments.rb"
gem "redcarpet" gem "redcarpet"
gem "yard" gem "yard"
gem "activerecord-jdbc-adapter", platform: :jruby
gem "activerecord-jdbcsqlite3-adapter", platform: :jruby
gem "jdbc-sqlite3", platform: :jruby
gem "jruby-openssl", platform: :jruby
gem "therubyrhino", platform: :jruby
gem "sqlite3", "~> 1.3.6", platform: :ruby
gem "spring" gem "spring"
gem "spring-commands-rspec" gem "spring-commands-rspec"
gem "rspec-rails", "~> 3.6" gem "rspec-rails", "~> 3.9"
gem "shoulda-context", "~> 1.2.0" gem "shoulda-context", "~> 1.2.0"
gem "rails", "~> 4.2.11.1" gem "rails", "4.2.11.1"
gem "sass-rails", "~> 5.0" gem "sass-rails", "~> 5.0"
gem "uglifier", ">= 1.3.0" gem "uglifier", ">= 1.3.0"
gem "coffee-rails", "~> 4.1.0" gem "coffee-rails", "~> 4.1.0"
@ -37,4 +31,5 @@ gem "bcrypt", "~> 3.1.7"
gem "activeresource", "4.0.0" gem "activeresource", "4.0.0"
gem "json", "~> 1.4" gem "json", "~> 1.4"
gem "protected_attributes", "~> 1.0.6" gem "protected_attributes", "~> 1.0.6"
gem "pg", "~> 0.15", platform: :ruby gem "pg", "~> 0.18"
gem "sqlite3", "~> 1.3.6"

View file

@ -39,16 +39,15 @@ GEM
minitest (~> 5.1) minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4) thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1) tzinfo (~> 1.1)
ansi (1.5.0)
appraisal (2.2.0) appraisal (2.2.0)
bundler bundler
rake rake
thor (>= 0.14.0) thor (>= 0.14.0)
arel (6.0.4) arel (6.0.4)
ast (2.4.0) ast (2.4.0)
bcrypt (3.1.11) bcrypt (3.1.13)
builder (3.2.3) builder (3.2.4)
byebug (9.1.0) byebug (11.0.1)
coderay (1.1.2) coderay (1.1.2)
coffee-rails (4.1.1) coffee-rails (4.1.1)
coffee-script (>= 2.2.0) coffee-script (>= 2.2.0)
@ -58,52 +57,51 @@ GEM
execjs execjs
coffee-script-source (1.12.2) coffee-script-source (1.12.2)
concurrent-ruby (1.1.5) concurrent-ruby (1.1.5)
crass (1.0.4) crass (1.0.5)
diff-lcs (1.3) diff-lcs (1.3)
erubis (2.7.0) erubis (2.7.0)
execjs (2.7.0) execjs (2.7.0)
ffi (1.9.18) ffi (1.11.3)
fssm (0.2.10) fssm (0.2.10)
globalid (0.4.2) globalid (0.4.2)
activesupport (>= 4.2.0) activesupport (>= 4.2.0)
i18n (0.9.5) i18n (0.9.5)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
jaro_winkler (1.5.2) jaro_winkler (1.5.4)
jbuilder (2.7.0) jbuilder (2.9.1)
activesupport (>= 4.2.0) activesupport (>= 4.2.0)
multi_json (>= 1.2) jquery-rails (4.3.5)
jquery-rails (4.3.1)
rails-dom-testing (>= 1, < 3) rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0) railties (>= 4.2.0)
thor (>= 0.14, < 2.0) thor (>= 0.14, < 2.0)
json (1.8.6) json (1.8.6)
loofah (2.2.3) loofah (2.4.0)
crass (~> 1.0.2) crass (~> 1.0.2)
nokogiri (>= 1.5.9) nokogiri (>= 1.5.9)
mail (2.7.1) mail (2.7.1)
mini_mime (>= 0.1.1) mini_mime (>= 0.1.1)
method_source (0.9.0) method_source (0.9.2)
mini_mime (1.0.1) mini_mime (1.0.2)
mini_portile2 (2.4.0) mini_portile2 (2.4.0)
minitest (5.11.3) minitest (5.13.0)
multi_json (1.12.2) multi_json (1.14.1)
nokogiri (1.10.3) nokogiri (1.10.7)
mini_portile2 (~> 2.4.0) mini_portile2 (~> 2.4.0)
parallel (1.17.0) parallel (1.19.1)
parser (2.6.3.0) parser (2.7.0.0)
ast (~> 2.4.0) ast (~> 2.4.0)
pg (0.21.0) pg (0.21.0)
protected_attributes (1.0.9) protected_attributes (1.0.9)
activemodel (>= 4.0.1, < 5.0) activemodel (>= 4.0.1, < 5.0)
pry (0.11.3) pry (0.12.2)
coderay (~> 1.1.0) coderay (~> 1.1.0)
method_source (~> 0.9.0) method_source (~> 0.9.0)
pry-byebug (3.5.1) pry-byebug (3.7.0)
byebug (~> 9.1) byebug (~> 11.0)
pry (~> 0.10) pry (~> 0.10)
pygments.rb (1.1.2) pygments.rb (1.2.1)
multi_json (>= 1.0.0) multi_json (>= 1.0.0)
rack (1.6.11) rack (1.6.12)
rack-test (0.6.3) rack-test (0.6.3)
rack (>= 1.0) rack (>= 1.0)
rails (4.2.11.1) rails (4.2.11.1)
@ -123,8 +121,8 @@ GEM
activesupport (>= 4.2.0, < 5.0) activesupport (>= 4.2.0, < 5.0)
nokogiri (~> 1.6) nokogiri (~> 1.6)
rails-deprecated_sanitizer (>= 1.0.1) rails-deprecated_sanitizer (>= 1.0.1)
rails-html-sanitizer (1.0.4) rails-html-sanitizer (1.3.0)
loofah (~> 2.2, >= 2.2.2) loofah (~> 2.3)
rails-observers (0.1.5) rails-observers (0.1.5)
activemodel (>= 4.0) activemodel (>= 4.0)
railties (4.2.11.1) railties (4.2.11.1)
@ -133,50 +131,50 @@ GEM
rake (>= 0.8.7) rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0) thor (>= 0.18.1, < 2.0)
rainbow (3.0.0) rainbow (3.0.0)
rake (12.3.2) rake (13.0.1)
rb-fsevent (0.10.2) rb-fsevent (0.10.3)
rb-inotify (0.9.10) rb-inotify (0.10.1)
ffi (>= 0.5.0, < 2) ffi (~> 1.0)
rdoc (4.3.0) rdoc (4.3.0)
redcarpet (3.4.0) redcarpet (3.5.0)
rspec (3.6.0) rspec (3.9.0)
rspec-core (~> 3.6.0) rspec-core (~> 3.9.0)
rspec-expectations (~> 3.6.0) rspec-expectations (~> 3.9.0)
rspec-mocks (~> 3.6.0) rspec-mocks (~> 3.9.0)
rspec-core (3.6.0) rspec-core (3.9.0)
rspec-support (~> 3.6.0) rspec-support (~> 3.9.0)
rspec-expectations (3.6.0) rspec-expectations (3.9.0)
diff-lcs (>= 1.2.0, < 2.0) diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.6.0) rspec-support (~> 3.9.0)
rspec-mocks (3.6.0) rspec-mocks (3.9.0)
diff-lcs (>= 1.2.0, < 2.0) diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.6.0) rspec-support (~> 3.9.0)
rspec-rails (3.6.1) rspec-rails (3.9.0)
actionpack (>= 3.0) actionpack (>= 3.0)
activesupport (>= 3.0) activesupport (>= 3.0)
railties (>= 3.0) railties (>= 3.0)
rspec-core (~> 3.6.0) rspec-core (~> 3.9.0)
rspec-expectations (~> 3.6.0) rspec-expectations (~> 3.9.0)
rspec-mocks (~> 3.6.0) rspec-mocks (~> 3.9.0)
rspec-support (~> 3.6.0) rspec-support (~> 3.9.0)
rspec-support (3.6.0) rspec-support (3.9.0)
rubocop (0.71.0) rubocop (0.78.0)
jaro_winkler (~> 1.5.1) jaro_winkler (~> 1.5.1)
parallel (~> 1.10) parallel (~> 1.10)
parser (>= 2.6) parser (>= 2.6)
rainbow (>= 2.2.2, < 4.0) rainbow (>= 2.2.2, < 4.0)
ruby-progressbar (~> 1.7) ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 1.7) unicode-display_width (>= 1.4.0, < 1.7)
rubocop-rails (2.0.1) rubocop-rails (2.4.1)
rack (>= 1.1) rack (>= 1.1)
rubocop (>= 0.70.0) rubocop (>= 0.72.0)
ruby-progressbar (1.10.1) ruby-progressbar (1.10.1)
sass (3.5.2) sass (3.7.4)
sass-listen (~> 4.0.0) sass-listen (~> 4.0.0)
sass-listen (4.0.0) sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4) rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7) rb-inotify (~> 0.9, >= 0.9.7)
sass-rails (5.0.6) sass-rails (5.0.7)
railties (>= 4.0.0, < 6) railties (>= 4.0.0, < 6)
sass (~> 3.1) sass (~> 3.1)
sprockets (>= 2.8, < 4.0) sprockets (>= 2.8, < 4.0)
@ -186,8 +184,7 @@ GEM
json (~> 1.7, >= 1.7.7) json (~> 1.7, >= 1.7.7)
rdoc (~> 4.0) rdoc (~> 4.0)
shoulda-context (1.2.2) shoulda-context (1.2.2)
spring (2.0.2) spring (2.1.0)
activesupport (>= 4.2)
spring-commands-rspec (1.0.4) spring-commands-rspec (1.0.4)
spring (>= 0.9.1) spring (>= 0.9.1)
sprockets (3.7.2) sprockets (3.7.2)
@ -198,18 +195,18 @@ GEM
activesupport (>= 4.0) activesupport (>= 4.0)
sprockets (>= 3.0.0) sprockets (>= 3.0.0)
sqlite3 (1.3.13) sqlite3 (1.3.13)
thor (0.20.3) thor (1.0.1)
thread_safe (0.3.6) thread_safe (0.3.6)
tilt (2.0.8) tilt (2.0.10)
turbolinks (5.0.1) turbolinks (5.2.1)
turbolinks-source (~> 5) turbolinks-source (~> 5.2)
turbolinks-source (5.0.3) turbolinks-source (5.2.0)
tzinfo (1.2.5) tzinfo (1.2.6)
thread_safe (~> 0.1) thread_safe (~> 0.1)
uglifier (3.2.0) uglifier (4.2.0)
execjs (>= 0.3.0, < 3) execjs (>= 0.3.0, < 3)
unicode-display_width (1.6.0) unicode-display_width (1.6.0)
yard (0.9.9) yard (0.9.20)
zeus (0.15.14) zeus (0.15.14)
method_source (>= 0.6.7) method_source (>= 0.6.7)
@ -217,8 +214,6 @@ PLATFORMS
ruby ruby
DEPENDENCIES DEPENDENCIES
activerecord-jdbc-adapter
activerecord-jdbcsqlite3-adapter
activeresource (= 4.0.0) activeresource (= 4.0.0)
appraisal (= 2.2.0) appraisal (= 2.2.0)
bcrypt (~> 3.1.7) bcrypt (~> 3.1.7)
@ -226,20 +221,18 @@ DEPENDENCIES
coffee-rails (~> 4.1.0) coffee-rails (~> 4.1.0)
fssm fssm
jbuilder (~> 2.0) jbuilder (~> 2.0)
jdbc-sqlite3
jquery-rails jquery-rails
jruby-openssl
json (~> 1.4) json (~> 1.4)
pg (~> 0.15) pg (~> 0.18)
protected_attributes (~> 1.0.6) protected_attributes (~> 1.0.6)
pry pry
pry-byebug pry-byebug
pygments.rb pygments.rb
rails (~> 4.2.11.1) rails (= 4.2.11.1)
rake (= 12.3.2) rake (= 13.0.1)
redcarpet redcarpet
rspec (~> 3.6) rspec (~> 3.9)
rspec-rails (~> 3.6) rspec-rails (~> 3.9)
rubocop rubocop
rubocop-rails rubocop-rails
sass-rails (~> 5.0) sass-rails (~> 5.0)
@ -248,7 +241,6 @@ DEPENDENCIES
spring spring
spring-commands-rspec spring-commands-rspec
sqlite3 (~> 1.3.6) sqlite3 (~> 1.3.6)
therubyrhino
turbolinks turbolinks
uglifier (>= 1.3.0) uglifier (>= 1.3.0)
yard yard

View file

@ -6,8 +6,8 @@ gem "appraisal", "2.2.0"
gem "bundler", "~> 1.1" gem "bundler", "~> 1.1"
gem "pry" gem "pry"
gem "pry-byebug" gem "pry-byebug"
gem "rake", "12.3.2" gem "rake", "13.0.1"
gem "rspec", "~> 3.6" gem "rspec", "~> 3.9"
gem "rubocop", require: false gem "rubocop", require: false
gem "rubocop-rails", require: false gem "rubocop-rails", require: false
gem "zeus", require: false gem "zeus", require: false
@ -15,18 +15,12 @@ gem "fssm"
gem "pygments.rb" gem "pygments.rb"
gem "redcarpet" gem "redcarpet"
gem "yard" gem "yard"
gem "activerecord-jdbc-adapter", platform: :jruby
gem "activerecord-jdbcsqlite3-adapter", platform: :jruby
gem "jdbc-sqlite3", platform: :jruby
gem "jruby-openssl", platform: :jruby
gem "therubyrhino", platform: :jruby
gem "sqlite3", "~> 1.3.6", platform: :ruby
gem "spring" gem "spring"
gem "spring-commands-rspec" gem "spring-commands-rspec"
gem "rspec-rails", "~> 3.6" gem "rspec-rails", "~> 3.9"
gem "shoulda-context", "~> 1.2.0" gem "shoulda-context", "~> 1.2.0"
gem "rails", "~> 5.0.7.2"
gem "rails-controller-testing", ">= 1.0.1" gem "rails-controller-testing", ">= 1.0.1"
gem "rails", "5.0.7.2"
gem "puma", "~> 3.0" gem "puma", "~> 3.0"
gem "sass-rails", "~> 5.0" gem "sass-rails", "~> 5.0"
gem "jquery-rails" gem "jquery-rails"
@ -35,4 +29,5 @@ gem "jbuilder", "~> 2.5"
gem "bcrypt", "~> 3.1.7" gem "bcrypt", "~> 3.1.7"
gem "listen", "~> 3.0.5" gem "listen", "~> 3.0.5"
gem "spring-watcher-listen", "~> 2.0.0" gem "spring-watcher-listen", "~> 2.0.0"
gem "pg", "~> 1.1", platform: :ruby gem "pg", "~> 0.18"
gem "sqlite3", "~> 1.3.6"

View file

@ -38,65 +38,63 @@ GEM
i18n (>= 0.7, < 2) i18n (>= 0.7, < 2)
minitest (~> 5.1) minitest (~> 5.1)
tzinfo (~> 1.1) tzinfo (~> 1.1)
ansi (1.5.0)
appraisal (2.2.0) appraisal (2.2.0)
bundler bundler
rake rake
thor (>= 0.14.0) thor (>= 0.14.0)
arel (7.1.4) arel (7.1.4)
ast (2.4.0) ast (2.4.0)
bcrypt (3.1.11) bcrypt (3.1.13)
builder (3.2.3) builder (3.2.4)
byebug (9.1.0) byebug (11.0.1)
coderay (1.1.2) coderay (1.1.2)
concurrent-ruby (1.1.5) concurrent-ruby (1.1.5)
crass (1.0.4) crass (1.0.5)
diff-lcs (1.3) diff-lcs (1.3)
erubis (2.7.0) erubis (2.7.0)
ffi (1.9.18) ffi (1.11.3)
fssm (0.2.10) fssm (0.2.10)
globalid (0.4.2) globalid (0.4.2)
activesupport (>= 4.2.0) activesupport (>= 4.2.0)
i18n (1.6.0) i18n (1.7.0)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
jaro_winkler (1.5.2) jaro_winkler (1.5.4)
jbuilder (2.7.0) jbuilder (2.9.1)
activesupport (>= 4.2.0) activesupport (>= 4.2.0)
multi_json (>= 1.2) jquery-rails (4.3.5)
jquery-rails (4.3.1)
rails-dom-testing (>= 1, < 3) rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0) railties (>= 4.2.0)
thor (>= 0.14, < 2.0) thor (>= 0.14, < 2.0)
listen (3.0.8) listen (3.0.8)
rb-fsevent (~> 0.9, >= 0.9.4) rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7) rb-inotify (~> 0.9, >= 0.9.7)
loofah (2.2.3) loofah (2.4.0)
crass (~> 1.0.2) crass (~> 1.0.2)
nokogiri (>= 1.5.9) nokogiri (>= 1.5.9)
mail (2.7.1) mail (2.7.1)
mini_mime (>= 0.1.1) mini_mime (>= 0.1.1)
method_source (0.9.2) method_source (0.9.2)
mini_mime (1.0.1) mini_mime (1.0.2)
mini_portile2 (2.4.0) mini_portile2 (2.4.0)
minitest (5.11.3) minitest (5.13.0)
multi_json (1.12.2) multi_json (1.14.1)
nio4r (2.3.1) nio4r (2.5.2)
nokogiri (1.10.3) nokogiri (1.10.7)
mini_portile2 (~> 2.4.0) mini_portile2 (~> 2.4.0)
parallel (1.17.0) parallel (1.19.1)
parser (2.6.3.0) parser (2.7.0.0)
ast (~> 2.4.0) ast (~> 2.4.0)
pg (1.1.4) pg (0.21.0)
pry (0.11.3) pry (0.12.2)
coderay (~> 1.1.0) coderay (~> 1.1.0)
method_source (~> 0.9.0) method_source (~> 0.9.0)
pry-byebug (3.5.1) pry-byebug (3.7.0)
byebug (~> 9.1) byebug (~> 11.0)
pry (~> 0.10) pry (~> 0.10)
puma (3.10.0) puma (3.12.2)
pygments.rb (1.1.2) pygments.rb (1.2.1)
multi_json (>= 1.0.0) multi_json (>= 1.0.0)
rack (2.0.7) rack (2.0.8)
rack-test (0.6.3) rack-test (0.6.3)
rack (>= 1.0) rack (>= 1.0)
rails (5.0.7.2) rails (5.0.7.2)
@ -111,15 +109,15 @@ GEM
bundler (>= 1.3.0) bundler (>= 1.3.0)
railties (= 5.0.7.2) railties (= 5.0.7.2)
sprockets-rails (>= 2.0.0) sprockets-rails (>= 2.0.0)
rails-controller-testing (1.0.1) rails-controller-testing (1.0.4)
actionpack (~> 5.x) actionpack (>= 5.0.1.x)
actionview (~> 5.x) actionview (>= 5.0.1.x)
activesupport (~> 5.x) activesupport (>= 5.0.1.x)
rails-dom-testing (2.0.3) rails-dom-testing (2.0.3)
activesupport (>= 4.2.0) activesupport (>= 4.2.0)
nokogiri (>= 1.6) nokogiri (>= 1.6)
rails-html-sanitizer (1.0.4) rails-html-sanitizer (1.3.0)
loofah (~> 2.2, >= 2.2.2) loofah (~> 2.3)
railties (5.0.7.2) railties (5.0.7.2)
actionpack (= 5.0.7.2) actionpack (= 5.0.7.2)
activesupport (= 5.0.7.2) activesupport (= 5.0.7.2)
@ -127,57 +125,56 @@ GEM
rake (>= 0.8.7) rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0) thor (>= 0.18.1, < 2.0)
rainbow (3.0.0) rainbow (3.0.0)
rake (12.3.2) rake (13.0.1)
rb-fsevent (0.10.2) rb-fsevent (0.10.3)
rb-inotify (0.9.10) rb-inotify (0.10.1)
ffi (>= 0.5.0, < 2) ffi (~> 1.0)
redcarpet (3.4.0) redcarpet (3.5.0)
rspec (3.6.0) rspec (3.9.0)
rspec-core (~> 3.6.0) rspec-core (~> 3.9.0)
rspec-expectations (~> 3.6.0) rspec-expectations (~> 3.9.0)
rspec-mocks (~> 3.6.0) rspec-mocks (~> 3.9.0)
rspec-core (3.6.0) rspec-core (3.9.0)
rspec-support (~> 3.6.0) rspec-support (~> 3.9.0)
rspec-expectations (3.6.0) rspec-expectations (3.9.0)
diff-lcs (>= 1.2.0, < 2.0) diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.6.0) rspec-support (~> 3.9.0)
rspec-mocks (3.6.0) rspec-mocks (3.9.0)
diff-lcs (>= 1.2.0, < 2.0) diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.6.0) rspec-support (~> 3.9.0)
rspec-rails (3.6.1) rspec-rails (3.9.0)
actionpack (>= 3.0) actionpack (>= 3.0)
activesupport (>= 3.0) activesupport (>= 3.0)
railties (>= 3.0) railties (>= 3.0)
rspec-core (~> 3.6.0) rspec-core (~> 3.9.0)
rspec-expectations (~> 3.6.0) rspec-expectations (~> 3.9.0)
rspec-mocks (~> 3.6.0) rspec-mocks (~> 3.9.0)
rspec-support (~> 3.6.0) rspec-support (~> 3.9.0)
rspec-support (3.6.0) rspec-support (3.9.0)
rubocop (0.71.0) rubocop (0.78.0)
jaro_winkler (~> 1.5.1) jaro_winkler (~> 1.5.1)
parallel (~> 1.10) parallel (~> 1.10)
parser (>= 2.6) parser (>= 2.6)
rainbow (>= 2.2.2, < 4.0) rainbow (>= 2.2.2, < 4.0)
ruby-progressbar (~> 1.7) ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 1.7) unicode-display_width (>= 1.4.0, < 1.7)
rubocop-rails (2.0.1) rubocop-rails (2.4.1)
rack (>= 1.1) rack (>= 1.1)
rubocop (>= 0.70.0) rubocop (>= 0.72.0)
ruby-progressbar (1.10.1) ruby-progressbar (1.10.1)
sass (3.5.2) sass (3.7.4)
sass-listen (~> 4.0.0) sass-listen (~> 4.0.0)
sass-listen (4.0.0) sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4) rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7) rb-inotify (~> 0.9, >= 0.9.7)
sass-rails (5.0.6) sass-rails (5.0.7)
railties (>= 4.0.0, < 6) railties (>= 4.0.0, < 6)
sass (~> 3.1) sass (~> 3.1)
sprockets (>= 2.8, < 4.0) sprockets (>= 2.8, < 4.0)
sprockets-rails (>= 2.0, < 4.0) sprockets-rails (>= 2.0, < 4.0)
tilt (>= 1.1, < 3) tilt (>= 1.1, < 3)
shoulda-context (1.2.2) shoulda-context (1.2.2)
spring (2.0.2) spring (2.1.0)
activesupport (>= 4.2)
spring-commands-rspec (1.0.4) spring-commands-rspec (1.0.4)
spring (>= 0.9.1) spring (>= 0.9.1)
spring-watcher-listen (2.0.1) spring-watcher-listen (2.0.1)
@ -191,19 +188,19 @@ GEM
activesupport (>= 4.0) activesupport (>= 4.0)
sprockets (>= 3.0.0) sprockets (>= 3.0.0)
sqlite3 (1.3.13) sqlite3 (1.3.13)
thor (0.20.3) thor (1.0.1)
thread_safe (0.3.6) thread_safe (0.3.6)
tilt (2.0.8) tilt (2.0.10)
turbolinks (5.0.1) turbolinks (5.2.1)
turbolinks-source (~> 5) turbolinks-source (~> 5.2)
turbolinks-source (5.0.3) turbolinks-source (5.2.0)
tzinfo (1.2.5) tzinfo (1.2.6)
thread_safe (~> 0.1) thread_safe (~> 0.1)
unicode-display_width (1.6.0) unicode-display_width (1.6.0)
websocket-driver (0.6.5) websocket-driver (0.6.5)
websocket-extensions (>= 0.1.0) websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.3) websocket-extensions (0.1.4)
yard (0.9.9) yard (0.9.20)
zeus (0.15.14) zeus (0.15.14)
method_source (>= 0.6.7) method_source (>= 0.6.7)
@ -211,28 +208,24 @@ PLATFORMS
ruby ruby
DEPENDENCIES DEPENDENCIES
activerecord-jdbc-adapter
activerecord-jdbcsqlite3-adapter
appraisal (= 2.2.0) appraisal (= 2.2.0)
bcrypt (~> 3.1.7) bcrypt (~> 3.1.7)
bundler (~> 1.1) bundler (~> 1.1)
fssm fssm
jbuilder (~> 2.5) jbuilder (~> 2.5)
jdbc-sqlite3
jquery-rails jquery-rails
jruby-openssl
listen (~> 3.0.5) listen (~> 3.0.5)
pg (~> 1.1) pg (~> 0.18)
pry pry
pry-byebug pry-byebug
puma (~> 3.0) puma (~> 3.0)
pygments.rb pygments.rb
rails (~> 5.0.7.2) rails (= 5.0.7.2)
rails-controller-testing (>= 1.0.1) rails-controller-testing (>= 1.0.1)
rake (= 12.3.2) rake (= 13.0.1)
redcarpet redcarpet
rspec (~> 3.6) rspec (~> 3.9)
rspec-rails (~> 3.6) rspec-rails (~> 3.9)
rubocop rubocop
rubocop-rails rubocop-rails
sass-rails (~> 5.0) sass-rails (~> 5.0)
@ -241,7 +234,6 @@ DEPENDENCIES
spring-commands-rspec spring-commands-rspec
spring-watcher-listen (~> 2.0.0) spring-watcher-listen (~> 2.0.0)
sqlite3 (~> 1.3.6) sqlite3 (~> 1.3.6)
therubyrhino
turbolinks (~> 5) turbolinks (~> 5)
yard yard
zeus zeus

View file

@ -6,8 +6,8 @@ gem "appraisal", "2.2.0"
gem "bundler", "~> 1.1" gem "bundler", "~> 1.1"
gem "pry" gem "pry"
gem "pry-byebug" gem "pry-byebug"
gem "rake", "12.3.2" gem "rake", "13.0.1"
gem "rspec", "~> 3.6" gem "rspec", "~> 3.9"
gem "rubocop", require: false gem "rubocop", require: false
gem "rubocop-rails", require: false gem "rubocop-rails", require: false
gem "zeus", require: false gem "zeus", require: false
@ -15,18 +15,12 @@ gem "fssm"
gem "pygments.rb" gem "pygments.rb"
gem "redcarpet" gem "redcarpet"
gem "yard" gem "yard"
gem "activerecord-jdbc-adapter", platform: :jruby
gem "activerecord-jdbcsqlite3-adapter", platform: :jruby
gem "jdbc-sqlite3", platform: :jruby
gem "jruby-openssl", platform: :jruby
gem "therubyrhino", platform: :jruby
gem "sqlite3", "~> 1.3.6", platform: :ruby
gem "spring" gem "spring"
gem "spring-commands-rspec" gem "spring-commands-rspec"
gem "rspec-rails", "~> 3.6" gem "rspec-rails", "~> 3.9"
gem "shoulda-context", "~> 1.2.0" gem "shoulda-context", "~> 1.2.0"
gem "rails", "~> 5.1.6.2"
gem "rails-controller-testing", ">= 1.0.1" gem "rails-controller-testing", ">= 1.0.1"
gem "rails", "5.1.7"
gem "puma", "~> 3.7" gem "puma", "~> 3.7"
gem "sass-rails", "~> 5.0" gem "sass-rails", "~> 5.0"
gem "turbolinks", "~> 5" gem "turbolinks", "~> 5"
@ -36,4 +30,5 @@ gem "capybara", "~> 2.13"
gem "selenium-webdriver" gem "selenium-webdriver"
gem "listen", ">= 3.0.5", "< 3.2" gem "listen", ">= 3.0.5", "< 3.2"
gem "spring-watcher-listen", "~> 2.0.0" gem "spring-watcher-listen", "~> 2.0.0"
gem "pg", "~> 1.1", platform: :ruby gem "pg", "~> 0.18"
gem "sqlite3", "~> 1.3.6"

View file

@ -1,55 +1,54 @@
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
specs: specs:
actioncable (5.1.6.2) actioncable (5.1.7)
actionpack (= 5.1.6.2) actionpack (= 5.1.7)
nio4r (~> 2.0) nio4r (~> 2.0)
websocket-driver (~> 0.6.1) websocket-driver (~> 0.6.1)
actionmailer (5.1.6.2) actionmailer (5.1.7)
actionpack (= 5.1.6.2) actionpack (= 5.1.7)
actionview (= 5.1.6.2) actionview (= 5.1.7)
activejob (= 5.1.6.2) activejob (= 5.1.7)
mail (~> 2.5, >= 2.5.4) mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 2.0) rails-dom-testing (~> 2.0)
actionpack (5.1.6.2) actionpack (5.1.7)
actionview (= 5.1.6.2) actionview (= 5.1.7)
activesupport (= 5.1.6.2) activesupport (= 5.1.7)
rack (~> 2.0) rack (~> 2.0)
rack-test (>= 0.6.3) rack-test (>= 0.6.3)
rails-dom-testing (~> 2.0) rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.2) rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (5.1.6.2) actionview (5.1.7)
activesupport (= 5.1.6.2) activesupport (= 5.1.7)
builder (~> 3.1) builder (~> 3.1)
erubi (~> 1.4) erubi (~> 1.4)
rails-dom-testing (~> 2.0) rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.3) rails-html-sanitizer (~> 1.0, >= 1.0.3)
activejob (5.1.6.2) activejob (5.1.7)
activesupport (= 5.1.6.2) activesupport (= 5.1.7)
globalid (>= 0.3.6) globalid (>= 0.3.6)
activemodel (5.1.6.2) activemodel (5.1.7)
activesupport (= 5.1.6.2) activesupport (= 5.1.7)
activerecord (5.1.6.2) activerecord (5.1.7)
activemodel (= 5.1.6.2) activemodel (= 5.1.7)
activesupport (= 5.1.6.2) activesupport (= 5.1.7)
arel (~> 8.0) arel (~> 8.0)
activesupport (5.1.6.2) activesupport (5.1.7)
concurrent-ruby (~> 1.0, >= 1.0.2) concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2) i18n (>= 0.7, < 2)
minitest (~> 5.1) minitest (~> 5.1)
tzinfo (~> 1.1) tzinfo (~> 1.1)
addressable (2.5.2) addressable (2.7.0)
public_suffix (>= 2.0.2, < 4.0) public_suffix (>= 2.0.2, < 5.0)
ansi (1.5.0)
appraisal (2.2.0) appraisal (2.2.0)
bundler bundler
rake rake
thor (>= 0.14.0) thor (>= 0.14.0)
arel (8.0.0) arel (8.0.0)
ast (2.4.0) ast (2.4.0)
bcrypt (3.1.12) bcrypt (3.1.13)
builder (3.2.3) builder (3.2.4)
byebug (10.0.2) byebug (11.0.1)
capybara (2.18.0) capybara (2.18.0)
addressable addressable
mini_mime (>= 0.1.3) mini_mime (>= 0.1.3)
@ -57,125 +56,123 @@ GEM
rack (>= 1.0.0) rack (>= 1.0.0)
rack-test (>= 0.5.4) rack-test (>= 0.5.4)
xpath (>= 2.0, < 4.0) xpath (>= 2.0, < 4.0)
childprocess (0.9.0) childprocess (3.0.0)
ffi (~> 1.0, >= 1.0.11)
coderay (1.1.2) coderay (1.1.2)
concurrent-ruby (1.1.5) concurrent-ruby (1.1.5)
crass (1.0.4) crass (1.0.5)
diff-lcs (1.3) diff-lcs (1.3)
erubi (1.8.0) erubi (1.9.0)
ffi (1.9.25) ffi (1.11.3)
fssm (0.2.10) fssm (0.2.10)
globalid (0.4.2) globalid (0.4.2)
activesupport (>= 4.2.0) activesupport (>= 4.2.0)
i18n (1.6.0) i18n (1.7.0)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
jaro_winkler (1.5.2) jaro_winkler (1.5.4)
jbuilder (2.7.0) jbuilder (2.9.1)
activesupport (>= 4.2.0) activesupport (>= 4.2.0)
multi_json (>= 1.2)
listen (3.1.5) listen (3.1.5)
rb-fsevent (~> 0.9, >= 0.9.4) rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7) rb-inotify (~> 0.9, >= 0.9.7)
ruby_dep (~> 1.2) ruby_dep (~> 1.2)
loofah (2.2.3) loofah (2.4.0)
crass (~> 1.0.2) crass (~> 1.0.2)
nokogiri (>= 1.5.9) nokogiri (>= 1.5.9)
mail (2.7.1) mail (2.7.1)
mini_mime (>= 0.1.1) mini_mime (>= 0.1.1)
method_source (0.9.2) method_source (0.9.2)
mini_mime (1.0.1) mini_mime (1.0.2)
mini_portile2 (2.4.0) mini_portile2 (2.4.0)
minitest (5.11.3) minitest (5.13.0)
multi_json (1.13.1) multi_json (1.14.1)
nio4r (2.3.1) nio4r (2.5.2)
nokogiri (1.10.3) nokogiri (1.10.7)
mini_portile2 (~> 2.4.0) mini_portile2 (~> 2.4.0)
parallel (1.17.0) parallel (1.19.1)
parser (2.6.3.0) parser (2.7.0.0)
ast (~> 2.4.0) ast (~> 2.4.0)
pg (1.1.3) pg (0.21.0)
pry (0.11.3) pry (0.12.2)
coderay (~> 1.1.0) coderay (~> 1.1.0)
method_source (~> 0.9.0) method_source (~> 0.9.0)
pry-byebug (3.6.0) pry-byebug (3.7.0)
byebug (~> 10.0) byebug (~> 11.0)
pry (~> 0.10) pry (~> 0.10)
public_suffix (3.0.3) public_suffix (4.0.1)
puma (3.12.0) puma (3.12.2)
pygments.rb (1.2.1) pygments.rb (1.2.1)
multi_json (>= 1.0.0) multi_json (>= 1.0.0)
rack (2.0.7) rack (2.0.8)
rack-test (1.1.0) rack-test (1.1.0)
rack (>= 1.0, < 3) rack (>= 1.0, < 3)
rails (5.1.6.2) rails (5.1.7)
actioncable (= 5.1.6.2) actioncable (= 5.1.7)
actionmailer (= 5.1.6.2) actionmailer (= 5.1.7)
actionpack (= 5.1.6.2) actionpack (= 5.1.7)
actionview (= 5.1.6.2) actionview (= 5.1.7)
activejob (= 5.1.6.2) activejob (= 5.1.7)
activemodel (= 5.1.6.2) activemodel (= 5.1.7)
activerecord (= 5.1.6.2) activerecord (= 5.1.7)
activesupport (= 5.1.6.2) activesupport (= 5.1.7)
bundler (>= 1.3.0) bundler (>= 1.3.0)
railties (= 5.1.6.2) railties (= 5.1.7)
sprockets-rails (>= 2.0.0) sprockets-rails (>= 2.0.0)
rails-controller-testing (1.0.2) rails-controller-testing (1.0.4)
actionpack (~> 5.x, >= 5.0.1) actionpack (>= 5.0.1.x)
actionview (~> 5.x, >= 5.0.1) actionview (>= 5.0.1.x)
activesupport (~> 5.x) activesupport (>= 5.0.1.x)
rails-dom-testing (2.0.3) rails-dom-testing (2.0.3)
activesupport (>= 4.2.0) activesupport (>= 4.2.0)
nokogiri (>= 1.6) nokogiri (>= 1.6)
rails-html-sanitizer (1.0.4) rails-html-sanitizer (1.3.0)
loofah (~> 2.2, >= 2.2.2) loofah (~> 2.3)
railties (5.1.6.2) railties (5.1.7)
actionpack (= 5.1.6.2) actionpack (= 5.1.7)
activesupport (= 5.1.6.2) activesupport (= 5.1.7)
method_source method_source
rake (>= 0.8.7) rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0) thor (>= 0.18.1, < 2.0)
rainbow (3.0.0) rainbow (3.0.0)
rake (12.3.2) rake (13.0.1)
rb-fsevent (0.10.3) rb-fsevent (0.10.3)
rb-inotify (0.9.10) rb-inotify (0.10.1)
ffi (>= 0.5.0, < 2) ffi (~> 1.0)
redcarpet (3.4.0) redcarpet (3.5.0)
rspec (3.8.0) rspec (3.9.0)
rspec-core (~> 3.8.0) rspec-core (~> 3.9.0)
rspec-expectations (~> 3.8.0) rspec-expectations (~> 3.9.0)
rspec-mocks (~> 3.8.0) rspec-mocks (~> 3.9.0)
rspec-core (3.8.2) rspec-core (3.9.0)
rspec-support (~> 3.8.0) rspec-support (~> 3.9.0)
rspec-expectations (3.8.4) rspec-expectations (3.9.0)
diff-lcs (>= 1.2.0, < 2.0) diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.8.0) rspec-support (~> 3.9.0)
rspec-mocks (3.8.1) rspec-mocks (3.9.0)
diff-lcs (>= 1.2.0, < 2.0) diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.8.0) rspec-support (~> 3.9.0)
rspec-rails (3.8.2) rspec-rails (3.9.0)
actionpack (>= 3.0) actionpack (>= 3.0)
activesupport (>= 3.0) activesupport (>= 3.0)
railties (>= 3.0) railties (>= 3.0)
rspec-core (~> 3.8.0) rspec-core (~> 3.9.0)
rspec-expectations (~> 3.8.0) rspec-expectations (~> 3.9.0)
rspec-mocks (~> 3.8.0) rspec-mocks (~> 3.9.0)
rspec-support (~> 3.8.0) rspec-support (~> 3.9.0)
rspec-support (3.8.2) rspec-support (3.9.0)
rubocop (0.71.0) rubocop (0.78.0)
jaro_winkler (~> 1.5.1) jaro_winkler (~> 1.5.1)
parallel (~> 1.10) parallel (~> 1.10)
parser (>= 2.6) parser (>= 2.6)
rainbow (>= 2.2.2, < 4.0) rainbow (>= 2.2.2, < 4.0)
ruby-progressbar (~> 1.7) ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 1.7) unicode-display_width (>= 1.4.0, < 1.7)
rubocop-rails (2.0.1) rubocop-rails (2.4.1)
rack (>= 1.1) rack (>= 1.1)
rubocop (>= 0.70.0) rubocop (>= 0.72.0)
ruby-progressbar (1.10.1) ruby-progressbar (1.10.1)
ruby_dep (1.5.0) ruby_dep (1.5.0)
rubyzip (1.2.2) rubyzip (2.0.0)
sass (3.5.7) sass (3.7.4)
sass-listen (~> 4.0.0) sass-listen (~> 4.0.0)
sass-listen (4.0.0) sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4) rb-fsevent (~> 0.9, >= 0.9.4)
@ -186,12 +183,11 @@ GEM
sprockets (>= 2.8, < 4.0) sprockets (>= 2.8, < 4.0)
sprockets-rails (>= 2.0, < 4.0) sprockets-rails (>= 2.0, < 4.0)
tilt (>= 1.1, < 3) tilt (>= 1.1, < 3)
selenium-webdriver (3.14.0) selenium-webdriver (3.142.6)
childprocess (~> 0.5) childprocess (>= 0.5, < 4.0)
rubyzip (~> 1.2) rubyzip (>= 1.2.2)
shoulda-context (1.2.2) shoulda-context (1.2.2)
spring (2.0.2) spring (2.1.0)
activesupport (>= 4.2)
spring-commands-rspec (1.0.4) spring-commands-rspec (1.0.4)
spring (>= 0.9.1) spring (>= 0.9.1)
spring-watcher-listen (2.0.1) spring-watcher-listen (2.0.1)
@ -205,21 +201,21 @@ GEM
activesupport (>= 4.0) activesupport (>= 4.0)
sprockets (>= 3.0.0) sprockets (>= 3.0.0)
sqlite3 (1.3.13) sqlite3 (1.3.13)
thor (0.20.3) thor (1.0.1)
thread_safe (0.3.6) thread_safe (0.3.6)
tilt (2.0.8) tilt (2.0.10)
turbolinks (5.2.0) turbolinks (5.2.1)
turbolinks-source (~> 5.2) turbolinks-source (~> 5.2)
turbolinks-source (5.2.0) turbolinks-source (5.2.0)
tzinfo (1.2.5) tzinfo (1.2.6)
thread_safe (~> 0.1) thread_safe (~> 0.1)
unicode-display_width (1.6.0) unicode-display_width (1.6.0)
websocket-driver (0.6.5) websocket-driver (0.6.5)
websocket-extensions (>= 0.1.0) websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.3) websocket-extensions (0.1.4)
xpath (3.1.0) xpath (3.2.0)
nokogiri (~> 1.8) nokogiri (~> 1.8)
yard (0.9.16) yard (0.9.20)
zeus (0.15.14) zeus (0.15.14)
method_source (>= 0.6.7) method_source (>= 0.6.7)
@ -227,28 +223,24 @@ PLATFORMS
ruby ruby
DEPENDENCIES DEPENDENCIES
activerecord-jdbc-adapter
activerecord-jdbcsqlite3-adapter
appraisal (= 2.2.0) appraisal (= 2.2.0)
bcrypt (~> 3.1.7) bcrypt (~> 3.1.7)
bundler (~> 1.1) bundler (~> 1.1)
capybara (~> 2.13) capybara (~> 2.13)
fssm fssm
jbuilder (~> 2.5) jbuilder (~> 2.5)
jdbc-sqlite3
jruby-openssl
listen (>= 3.0.5, < 3.2) listen (>= 3.0.5, < 3.2)
pg (~> 1.1) pg (~> 0.18)
pry pry
pry-byebug pry-byebug
puma (~> 3.7) puma (~> 3.7)
pygments.rb pygments.rb
rails (~> 5.1.6.2) rails (= 5.1.7)
rails-controller-testing (>= 1.0.1) rails-controller-testing (>= 1.0.1)
rake (= 12.3.2) rake (= 13.0.1)
redcarpet redcarpet
rspec (~> 3.6) rspec (~> 3.9)
rspec-rails (~> 3.6) rspec-rails (~> 3.9)
rubocop rubocop
rubocop-rails rubocop-rails
sass-rails (~> 5.0) sass-rails (~> 5.0)
@ -258,7 +250,6 @@ DEPENDENCIES
spring-commands-rspec spring-commands-rspec
spring-watcher-listen (~> 2.0.0) spring-watcher-listen (~> 2.0.0)
sqlite3 (~> 1.3.6) sqlite3 (~> 1.3.6)
therubyrhino
turbolinks (~> 5) turbolinks (~> 5)
yard yard
zeus zeus

View file

@ -6,8 +6,8 @@ gem "appraisal", "2.2.0"
gem "bundler", "~> 1.1" gem "bundler", "~> 1.1"
gem "pry" gem "pry"
gem "pry-byebug" gem "pry-byebug"
gem "rake", "12.3.2" gem "rake", "13.0.1"
gem "rspec", "~> 3.6" gem "rspec", "~> 3.9"
gem "rubocop", require: false gem "rubocop", require: false
gem "rubocop-rails", require: false gem "rubocop-rails", require: false
gem "zeus", require: false gem "zeus", require: false
@ -15,18 +15,12 @@ gem "fssm"
gem "pygments.rb" gem "pygments.rb"
gem "redcarpet" gem "redcarpet"
gem "yard" gem "yard"
gem "activerecord-jdbc-adapter", platform: :jruby
gem "activerecord-jdbcsqlite3-adapter", platform: :jruby
gem "jdbc-sqlite3", platform: :jruby
gem "jruby-openssl", platform: :jruby
gem "therubyrhino", platform: :jruby
gem "sqlite3", "~> 1.3.6", platform: :ruby
gem "spring" gem "spring"
gem "spring-commands-rspec" gem "spring-commands-rspec"
gem "rspec-rails", "~> 3.6" gem "rspec-rails", "~> 3.9"
gem "shoulda-context", "~> 1.2.0" gem "shoulda-context", "~> 1.2.0"
gem "rails", "~> 5.2.2.1"
gem "rails-controller-testing", ">= 1.0.1" gem "rails-controller-testing", ">= 1.0.1"
gem "rails", "5.2.4.1"
gem "puma", "~> 3.11" gem "puma", "~> 3.11"
gem "bootsnap", ">= 1.1.0", require: false gem "bootsnap", ">= 1.1.0", require: false
gem "sass-rails", "~> 5.0" gem "sass-rails", "~> 5.0"
@ -38,4 +32,5 @@ gem "selenium-webdriver"
gem "chromedriver-helper" gem "chromedriver-helper"
gem "listen", ">= 3.0.5", "< 3.2" gem "listen", ">= 3.0.5", "< 3.2"
gem "spring-watcher-listen", "~> 2.0.0" gem "spring-watcher-listen", "~> 2.0.0"
gem "pg", "~> 1.1", platform: :ruby gem "pg", "~> 0.18"
gem "sqlite3", "~> 1.3.6"

View file

@ -1,63 +1,62 @@
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
specs: specs:
actioncable (5.2.2.1) actioncable (5.2.4.1)
actionpack (= 5.2.2.1) actionpack (= 5.2.4.1)
nio4r (~> 2.0) nio4r (~> 2.0)
websocket-driver (>= 0.6.1) websocket-driver (>= 0.6.1)
actionmailer (5.2.2.1) actionmailer (5.2.4.1)
actionpack (= 5.2.2.1) actionpack (= 5.2.4.1)
actionview (= 5.2.2.1) actionview (= 5.2.4.1)
activejob (= 5.2.2.1) activejob (= 5.2.4.1)
mail (~> 2.5, >= 2.5.4) mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 2.0) rails-dom-testing (~> 2.0)
actionpack (5.2.2.1) actionpack (5.2.4.1)
actionview (= 5.2.2.1) actionview (= 5.2.4.1)
activesupport (= 5.2.2.1) activesupport (= 5.2.4.1)
rack (~> 2.0) rack (~> 2.0, >= 2.0.8)
rack-test (>= 0.6.3) rack-test (>= 0.6.3)
rails-dom-testing (~> 2.0) rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.2) rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (5.2.2.1) actionview (5.2.4.1)
activesupport (= 5.2.2.1) activesupport (= 5.2.4.1)
builder (~> 3.1) builder (~> 3.1)
erubi (~> 1.4) erubi (~> 1.4)
rails-dom-testing (~> 2.0) rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.3) rails-html-sanitizer (~> 1.0, >= 1.0.3)
activejob (5.2.2.1) activejob (5.2.4.1)
activesupport (= 5.2.2.1) activesupport (= 5.2.4.1)
globalid (>= 0.3.6) globalid (>= 0.3.6)
activemodel (5.2.2.1) activemodel (5.2.4.1)
activesupport (= 5.2.2.1) activesupport (= 5.2.4.1)
activerecord (5.2.2.1) activerecord (5.2.4.1)
activemodel (= 5.2.2.1) activemodel (= 5.2.4.1)
activesupport (= 5.2.2.1) activesupport (= 5.2.4.1)
arel (>= 9.0) arel (>= 9.0)
activestorage (5.2.2.1) activestorage (5.2.4.1)
actionpack (= 5.2.2.1) actionpack (= 5.2.4.1)
activerecord (= 5.2.2.1) activerecord (= 5.2.4.1)
marcel (~> 0.3.1) marcel (~> 0.3.1)
activesupport (5.2.2.1) activesupport (5.2.4.1)
concurrent-ruby (~> 1.0, >= 1.0.2) concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2) i18n (>= 0.7, < 2)
minitest (~> 5.1) minitest (~> 5.1)
tzinfo (~> 1.1) tzinfo (~> 1.1)
addressable (2.5.2) addressable (2.7.0)
public_suffix (>= 2.0.2, < 4.0) public_suffix (>= 2.0.2, < 5.0)
ansi (1.5.0)
appraisal (2.2.0) appraisal (2.2.0)
bundler bundler
rake rake
thor (>= 0.14.0) thor (>= 0.14.0)
archive-zip (0.11.0) archive-zip (0.12.0)
io-like (~> 0.3.0) io-like (~> 0.3.0)
arel (9.0.0) arel (9.0.0)
ast (2.4.0) ast (2.4.0)
bcrypt (3.1.12) bcrypt (3.1.13)
bootsnap (1.3.1) bootsnap (1.4.5)
msgpack (~> 1.0) msgpack (~> 1.0)
builder (3.2.3) builder (3.2.4)
byebug (10.0.2) byebug (11.0.1)
capybara (3.1.1) capybara (3.1.1)
addressable addressable
mini_mime (>= 0.1.3) mini_mime (>= 0.1.3)
@ -65,32 +64,30 @@ GEM
rack (>= 1.6.0) rack (>= 1.6.0)
rack-test (>= 0.6.3) rack-test (>= 0.6.3)
xpath (~> 3.0) xpath (~> 3.0)
childprocess (0.9.0) childprocess (3.0.0)
ffi (~> 1.0, >= 1.0.11) chromedriver-helper (2.1.1)
chromedriver-helper (1.2.0)
archive-zip (~> 0.10) archive-zip (~> 0.10)
nokogiri (~> 1.8) nokogiri (~> 1.8)
coderay (1.1.2) coderay (1.1.2)
concurrent-ruby (1.1.5) concurrent-ruby (1.1.5)
crass (1.0.4) crass (1.0.5)
diff-lcs (1.3) diff-lcs (1.3)
erubi (1.8.0) erubi (1.9.0)
ffi (1.9.25) ffi (1.11.3)
fssm (0.2.10) fssm (0.2.10)
globalid (0.4.2) globalid (0.4.2)
activesupport (>= 4.2.0) activesupport (>= 4.2.0)
i18n (1.6.0) i18n (1.7.0)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
io-like (0.3.0) io-like (0.3.0)
jaro_winkler (1.5.2) jaro_winkler (1.5.4)
jbuilder (2.7.0) jbuilder (2.9.1)
activesupport (>= 4.2.0) activesupport (>= 4.2.0)
multi_json (>= 1.2)
listen (3.1.5) listen (3.1.5)
rb-fsevent (~> 0.9, >= 0.9.4) rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7) rb-inotify (~> 0.9, >= 0.9.7)
ruby_dep (~> 1.2) ruby_dep (~> 1.2)
loofah (2.2.3) loofah (2.4.0)
crass (~> 1.0.2) crass (~> 1.0.2)
nokogiri (>= 1.5.9) nokogiri (>= 1.5.9)
mail (2.7.1) mail (2.7.1)
@ -99,116 +96,115 @@ GEM
mimemagic (~> 0.3.2) mimemagic (~> 0.3.2)
method_source (0.9.2) method_source (0.9.2)
mimemagic (0.3.3) mimemagic (0.3.3)
mini_mime (1.0.1) mini_mime (1.0.2)
mini_portile2 (2.4.0) mini_portile2 (2.4.0)
minitest (5.11.3) minitest (5.13.0)
msgpack (1.2.4) msgpack (1.3.1)
multi_json (1.13.1) multi_json (1.14.1)
nio4r (2.3.1) nio4r (2.5.2)
nokogiri (1.10.3) nokogiri (1.10.7)
mini_portile2 (~> 2.4.0) mini_portile2 (~> 2.4.0)
parallel (1.17.0) parallel (1.19.1)
parser (2.6.3.0) parser (2.7.0.0)
ast (~> 2.4.0) ast (~> 2.4.0)
pg (1.1.2) pg (0.21.0)
pry (0.11.3) pry (0.12.2)
coderay (~> 1.1.0) coderay (~> 1.1.0)
method_source (~> 0.9.0) method_source (~> 0.9.0)
pry-byebug (3.6.0) pry-byebug (3.7.0)
byebug (~> 10.0) byebug (~> 11.0)
pry (~> 0.10) pry (~> 0.10)
public_suffix (3.0.3) public_suffix (4.0.1)
puma (3.12.0) puma (3.12.2)
pygments.rb (1.2.1) pygments.rb (1.2.1)
multi_json (>= 1.0.0) multi_json (>= 1.0.0)
rack (2.0.7) rack (2.0.8)
rack-test (1.1.0) rack-test (1.1.0)
rack (>= 1.0, < 3) rack (>= 1.0, < 3)
rails (5.2.2.1) rails (5.2.4.1)
actioncable (= 5.2.2.1) actioncable (= 5.2.4.1)
actionmailer (= 5.2.2.1) actionmailer (= 5.2.4.1)
actionpack (= 5.2.2.1) actionpack (= 5.2.4.1)
actionview (= 5.2.2.1) actionview (= 5.2.4.1)
activejob (= 5.2.2.1) activejob (= 5.2.4.1)
activemodel (= 5.2.2.1) activemodel (= 5.2.4.1)
activerecord (= 5.2.2.1) activerecord (= 5.2.4.1)
activestorage (= 5.2.2.1) activestorage (= 5.2.4.1)
activesupport (= 5.2.2.1) activesupport (= 5.2.4.1)
bundler (>= 1.3.0) bundler (>= 1.3.0)
railties (= 5.2.2.1) railties (= 5.2.4.1)
sprockets-rails (>= 2.0.0) sprockets-rails (>= 2.0.0)
rails-controller-testing (1.0.2) rails-controller-testing (1.0.4)
actionpack (~> 5.x, >= 5.0.1) actionpack (>= 5.0.1.x)
actionview (~> 5.x, >= 5.0.1) actionview (>= 5.0.1.x)
activesupport (~> 5.x) activesupport (>= 5.0.1.x)
rails-dom-testing (2.0.3) rails-dom-testing (2.0.3)
activesupport (>= 4.2.0) activesupport (>= 4.2.0)
nokogiri (>= 1.6) nokogiri (>= 1.6)
rails-html-sanitizer (1.0.4) rails-html-sanitizer (1.3.0)
loofah (~> 2.2, >= 2.2.2) loofah (~> 2.3)
railties (5.2.2.1) railties (5.2.4.1)
actionpack (= 5.2.2.1) actionpack (= 5.2.4.1)
activesupport (= 5.2.2.1) activesupport (= 5.2.4.1)
method_source method_source
rake (>= 0.8.7) rake (>= 0.8.7)
thor (>= 0.19.0, < 2.0) thor (>= 0.19.0, < 2.0)
rainbow (3.0.0) rainbow (3.0.0)
rake (12.3.2) rake (13.0.1)
rb-fsevent (0.10.3) rb-fsevent (0.10.3)
rb-inotify (0.9.10) rb-inotify (0.10.1)
ffi (>= 0.5.0, < 2) ffi (~> 1.0)
redcarpet (3.4.0) redcarpet (3.5.0)
rspec (3.8.0) rspec (3.9.0)
rspec-core (~> 3.8.0) rspec-core (~> 3.9.0)
rspec-expectations (~> 3.8.0) rspec-expectations (~> 3.9.0)
rspec-mocks (~> 3.8.0) rspec-mocks (~> 3.9.0)
rspec-core (3.8.2) rspec-core (3.9.0)
rspec-support (~> 3.8.0) rspec-support (~> 3.9.0)
rspec-expectations (3.8.4) rspec-expectations (3.9.0)
diff-lcs (>= 1.2.0, < 2.0) diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.8.0) rspec-support (~> 3.9.0)
rspec-mocks (3.8.1) rspec-mocks (3.9.0)
diff-lcs (>= 1.2.0, < 2.0) diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.8.0) rspec-support (~> 3.9.0)
rspec-rails (3.8.2) rspec-rails (3.9.0)
actionpack (>= 3.0) actionpack (>= 3.0)
activesupport (>= 3.0) activesupport (>= 3.0)
railties (>= 3.0) railties (>= 3.0)
rspec-core (~> 3.8.0) rspec-core (~> 3.9.0)
rspec-expectations (~> 3.8.0) rspec-expectations (~> 3.9.0)
rspec-mocks (~> 3.8.0) rspec-mocks (~> 3.9.0)
rspec-support (~> 3.8.0) rspec-support (~> 3.9.0)
rspec-support (3.8.2) rspec-support (3.9.0)
rubocop (0.71.0) rubocop (0.78.0)
jaro_winkler (~> 1.5.1) jaro_winkler (~> 1.5.1)
parallel (~> 1.10) parallel (~> 1.10)
parser (>= 2.6) parser (>= 2.6)
rainbow (>= 2.2.2, < 4.0) rainbow (>= 2.2.2, < 4.0)
ruby-progressbar (~> 1.7) ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 1.7) unicode-display_width (>= 1.4.0, < 1.7)
rubocop-rails (2.0.1) rubocop-rails (2.4.1)
rack (>= 1.1) rack (>= 1.1)
rubocop (>= 0.70.0) rubocop (>= 0.72.0)
ruby-progressbar (1.10.1) ruby-progressbar (1.10.1)
ruby_dep (1.5.0) ruby_dep (1.5.0)
rubyzip (1.2.2) rubyzip (2.0.0)
sass (3.5.7) sass (3.7.4)
sass-listen (~> 4.0.0) sass-listen (~> 4.0.0)
sass-listen (4.0.0) sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4) rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7) rb-inotify (~> 0.9, >= 0.9.7)
sass-rails (5.0.7) sass-rails (5.1.0)
railties (>= 4.0.0, < 6) railties (>= 5.2.0)
sass (~> 3.1) sass (~> 3.1)
sprockets (>= 2.8, < 4.0) sprockets (>= 2.8, < 4.0)
sprockets-rails (>= 2.0, < 4.0) sprockets-rails (>= 2.0, < 4.0)
tilt (>= 1.1, < 3) tilt (>= 1.1, < 3)
selenium-webdriver (3.14.0) selenium-webdriver (3.142.6)
childprocess (~> 0.5) childprocess (>= 0.5, < 4.0)
rubyzip (~> 1.2) rubyzip (>= 1.2.2)
shoulda-context (1.2.2) shoulda-context (1.2.2)
spring (2.0.2) spring (2.1.0)
activesupport (>= 4.2)
spring-commands-rspec (1.0.4) spring-commands-rspec (1.0.4)
spring (>= 0.9.1) spring (>= 0.9.1)
spring-watcher-listen (2.0.1) spring-watcher-listen (2.0.1)
@ -222,21 +218,21 @@ GEM
activesupport (>= 4.0) activesupport (>= 4.0)
sprockets (>= 3.0.0) sprockets (>= 3.0.0)
sqlite3 (1.3.13) sqlite3 (1.3.13)
thor (0.20.3) thor (1.0.1)
thread_safe (0.3.6) thread_safe (0.3.6)
tilt (2.0.8) tilt (2.0.10)
turbolinks (5.2.0) turbolinks (5.2.1)
turbolinks-source (~> 5.2) turbolinks-source (~> 5.2)
turbolinks-source (5.2.0) turbolinks-source (5.2.0)
tzinfo (1.2.5) tzinfo (1.2.6)
thread_safe (~> 0.1) thread_safe (~> 0.1)
unicode-display_width (1.6.0) unicode-display_width (1.6.0)
websocket-driver (0.7.0) websocket-driver (0.7.1)
websocket-extensions (>= 0.1.0) websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.3) websocket-extensions (0.1.4)
xpath (3.1.0) xpath (3.2.0)
nokogiri (~> 1.8) nokogiri (~> 1.8)
yard (0.9.16) yard (0.9.20)
zeus (0.15.14) zeus (0.15.14)
method_source (>= 0.6.7) method_source (>= 0.6.7)
@ -244,8 +240,6 @@ PLATFORMS
ruby ruby
DEPENDENCIES DEPENDENCIES
activerecord-jdbc-adapter
activerecord-jdbcsqlite3-adapter
appraisal (= 2.2.0) appraisal (= 2.2.0)
bcrypt (~> 3.1.7) bcrypt (~> 3.1.7)
bootsnap (>= 1.1.0) bootsnap (>= 1.1.0)
@ -254,20 +248,18 @@ DEPENDENCIES
chromedriver-helper chromedriver-helper
fssm fssm
jbuilder (~> 2.5) jbuilder (~> 2.5)
jdbc-sqlite3
jruby-openssl
listen (>= 3.0.5, < 3.2) listen (>= 3.0.5, < 3.2)
pg (~> 1.1) pg (~> 0.18)
pry pry
pry-byebug pry-byebug
puma (~> 3.11) puma (~> 3.11)
pygments.rb pygments.rb
rails (~> 5.2.2.1) rails (= 5.2.4.1)
rails-controller-testing (>= 1.0.1) rails-controller-testing (>= 1.0.1)
rake (= 12.3.2) rake (= 13.0.1)
redcarpet redcarpet
rspec (~> 3.6) rspec (~> 3.9)
rspec-rails (~> 3.6) rspec-rails (~> 3.9)
rubocop rubocop
rubocop-rails rubocop-rails
sass-rails (~> 5.0) sass-rails (~> 5.0)
@ -277,7 +269,6 @@ DEPENDENCIES
spring-commands-rspec spring-commands-rspec
spring-watcher-listen (~> 2.0.0) spring-watcher-listen (~> 2.0.0)
sqlite3 (~> 1.3.6) sqlite3 (~> 1.3.6)
therubyrhino
turbolinks (~> 5) turbolinks (~> 5)
yard yard
zeus zeus

View file

@ -6,8 +6,8 @@ gem "appraisal", "2.2.0"
gem "bundler", "~> 1.1" gem "bundler", "~> 1.1"
gem "pry" gem "pry"
gem "pry-byebug" gem "pry-byebug"
gem "rake", "12.3.2" gem "rake", "13.0.1"
gem "rspec", "~> 3.6" gem "rspec", "~> 3.9"
gem "rubocop", require: false gem "rubocop", require: false
gem "rubocop-rails", require: false gem "rubocop-rails", require: false
gem "zeus", require: false gem "zeus", require: false
@ -15,28 +15,23 @@ gem "fssm"
gem "pygments.rb" gem "pygments.rb"
gem "redcarpet" gem "redcarpet"
gem "yard" gem "yard"
gem "activerecord-jdbc-adapter", platform: :jruby
gem "activerecord-jdbcsqlite3-adapter", platform: :jruby
gem "jdbc-sqlite3", platform: :jruby
gem "jruby-openssl", platform: :jruby
gem "therubyrhino", platform: :jruby
gem "sqlite3", "~> 1.3.6", platform: :ruby
gem "spring" gem "spring"
gem "spring-commands-rspec" gem "spring-commands-rspec"
gem "rspec-rails", "~> 3.6" gem "rspec-rails", "~> 3.9"
gem "shoulda-context", "~> 1.2.0" gem "shoulda-context", "~> 1.2.0"
gem "rails", "~> 6.0.0.beta3" gem "rails-controller-testing", ">= 1.0.1"
gem "puma", "~> 3.11" gem "rails", "6.0.2.1"
gem "bootsnap", ">= 1.4.1", require: false gem "puma", "~> 4.1"
gem "sass-rails", "~> 5.0" gem "bootsnap", ">= 1.4.2", require: false
gem "webpacker", ">= 4.0.0.rc3" gem "sass-rails", ">= 6"
gem "webpacker", "~> 4.0"
gem "turbolinks", "~> 5" gem "turbolinks", "~> 5"
gem "jbuilder", "~> 2.5" gem "jbuilder", "~> 2.7"
gem "bcrypt", "~> 3.1.7" gem "bcrypt", "~> 3.1.7"
gem "capybara", ">= 2.15" gem "capybara", ">= 2.15"
gem "listen", ">= 3.0.5", "< 3.2" gem "listen", ">= 3.0.5", "< 3.2"
gem "spring-watcher-listen", "~> 2.0.0" gem "spring-watcher-listen", "~> 2.0.0"
gem "selenium-webdriver" gem "selenium-webdriver"
gem "chromedriver-helper" gem "webdrivers"
gem "rails-controller-testing", ">= 1.0.1" gem "pg", ">= 0.18", "< 2.0"
gem "pg", "~> 1.1", platform: :ruby gem "sqlite3", "~> 1.4"

View file

@ -1,109 +1,101 @@
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
specs: specs:
actioncable (6.0.0.beta3) actioncable (6.0.2.1)
actionpack (= 6.0.0.beta3) actionpack (= 6.0.2.1)
nio4r (~> 2.0) nio4r (~> 2.0)
websocket-driver (>= 0.6.1) websocket-driver (>= 0.6.1)
actionmailbox (6.0.0.beta3) actionmailbox (6.0.2.1)
actionpack (= 6.0.0.beta3) actionpack (= 6.0.2.1)
activejob (= 6.0.0.beta3) activejob (= 6.0.2.1)
activerecord (= 6.0.0.beta3) activerecord (= 6.0.2.1)
activestorage (= 6.0.0.beta3) activestorage (= 6.0.2.1)
activesupport (= 6.0.0.beta3) activesupport (= 6.0.2.1)
mail (>= 2.7.1) mail (>= 2.7.1)
actionmailer (6.0.0.beta3) actionmailer (6.0.2.1)
actionpack (= 6.0.0.beta3) actionpack (= 6.0.2.1)
actionview (= 6.0.0.beta3) actionview (= 6.0.2.1)
activejob (= 6.0.0.beta3) activejob (= 6.0.2.1)
mail (~> 2.5, >= 2.5.4) mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 2.0) rails-dom-testing (~> 2.0)
actionpack (6.0.0.beta3) actionpack (6.0.2.1)
actionview (= 6.0.0.beta3) actionview (= 6.0.2.1)
activesupport (= 6.0.0.beta3) activesupport (= 6.0.2.1)
rack (~> 2.0) rack (~> 2.0, >= 2.0.8)
rack-test (>= 0.6.3) rack-test (>= 0.6.3)
rails-dom-testing (~> 2.0) rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.2) rails-html-sanitizer (~> 1.0, >= 1.2.0)
actiontext (6.0.0.beta3) actiontext (6.0.2.1)
actionpack (= 6.0.0.beta3) actionpack (= 6.0.2.1)
activerecord (= 6.0.0.beta3) activerecord (= 6.0.2.1)
activestorage (= 6.0.0.beta3) activestorage (= 6.0.2.1)
activesupport (= 6.0.0.beta3) activesupport (= 6.0.2.1)
nokogiri (>= 1.8.5) nokogiri (>= 1.8.5)
actionview (6.0.0.beta3) actionview (6.0.2.1)
activesupport (= 6.0.0.beta3) activesupport (= 6.0.2.1)
builder (~> 3.1) builder (~> 3.1)
erubi (~> 1.4) erubi (~> 1.4)
rails-dom-testing (~> 2.0) rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.3) rails-html-sanitizer (~> 1.1, >= 1.2.0)
activejob (6.0.0.beta3) activejob (6.0.2.1)
activesupport (= 6.0.0.beta3) activesupport (= 6.0.2.1)
globalid (>= 0.3.6) globalid (>= 0.3.6)
activemodel (6.0.0.beta3) activemodel (6.0.2.1)
activesupport (= 6.0.0.beta3) activesupport (= 6.0.2.1)
activerecord (6.0.0.beta3) activerecord (6.0.2.1)
activemodel (= 6.0.0.beta3) activemodel (= 6.0.2.1)
activesupport (= 6.0.0.beta3) activesupport (= 6.0.2.1)
activestorage (6.0.0.beta3) activestorage (6.0.2.1)
actionpack (= 6.0.0.beta3) actionpack (= 6.0.2.1)
activerecord (= 6.0.0.beta3) activejob (= 6.0.2.1)
activerecord (= 6.0.2.1)
marcel (~> 0.3.1) marcel (~> 0.3.1)
activesupport (6.0.0.beta3) activesupport (6.0.2.1)
concurrent-ruby (~> 1.0, >= 1.0.2) concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2) i18n (>= 0.7, < 2)
minitest (~> 5.1) minitest (~> 5.1)
tzinfo (~> 1.1) tzinfo (~> 1.1)
zeitwerk (~> 1.3, >= 1.3.1) zeitwerk (~> 2.2)
addressable (2.6.0) addressable (2.7.0)
public_suffix (>= 2.0.2, < 4.0) public_suffix (>= 2.0.2, < 5.0)
ansi (1.5.0)
appraisal (2.2.0) appraisal (2.2.0)
bundler bundler
rake rake
thor (>= 0.14.0) thor (>= 0.14.0)
archive-zip (0.12.0)
io-like (~> 0.3.0)
ast (2.4.0) ast (2.4.0)
bcrypt (3.1.12) bcrypt (3.1.13)
bootsnap (1.4.1) bootsnap (1.4.5)
msgpack (~> 1.0) msgpack (~> 1.0)
builder (3.2.3) builder (3.2.4)
byebug (11.0.0) byebug (11.0.1)
capybara (3.14.0) capybara (3.30.0)
addressable addressable
mini_mime (>= 0.1.3) mini_mime (>= 0.1.3)
nokogiri (~> 1.8) nokogiri (~> 1.8)
rack (>= 1.6.0) rack (>= 1.6.0)
rack-test (>= 0.6.3) rack-test (>= 0.6.3)
regexp_parser (~> 1.2) regexp_parser (~> 1.5)
xpath (~> 3.2) xpath (~> 3.2)
childprocess (0.9.0) childprocess (3.0.0)
ffi (~> 1.0, >= 1.0.11)
chromedriver-helper (2.1.0)
archive-zip (~> 0.10)
nokogiri (~> 1.8)
coderay (1.1.2) coderay (1.1.2)
concurrent-ruby (1.1.5) concurrent-ruby (1.1.5)
crass (1.0.4) crass (1.0.5)
diff-lcs (1.3) diff-lcs (1.3)
erubi (1.8.0) erubi (1.9.0)
ffi (1.10.0) ffi (1.11.3)
fssm (0.2.10) fssm (0.2.10)
globalid (0.4.2) globalid (0.4.2)
activesupport (>= 4.2.0) activesupport (>= 4.2.0)
i18n (1.6.0) i18n (1.7.0)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
io-like (0.3.0) jaro_winkler (1.5.4)
jaro_winkler (1.5.2) jbuilder (2.9.1)
jbuilder (2.8.0)
activesupport (>= 4.2.0) activesupport (>= 4.2.0)
multi_json (>= 1.2)
listen (3.1.5) listen (3.1.5)
rb-fsevent (~> 0.9, >= 0.9.4) rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7) rb-inotify (~> 0.9, >= 0.9.7)
ruby_dep (~> 1.2) ruby_dep (~> 1.2)
loofah (2.2.3) loofah (2.4.0)
crass (~> 1.0.2) crass (~> 1.0.2)
nokogiri (>= 1.5.9) nokogiri (>= 1.5.9)
mail (2.7.1) mail (2.7.1)
@ -112,47 +104,48 @@ GEM
mimemagic (~> 0.3.2) mimemagic (~> 0.3.2)
method_source (0.9.2) method_source (0.9.2)
mimemagic (0.3.3) mimemagic (0.3.3)
mini_mime (1.0.1) mini_mime (1.0.2)
mini_portile2 (2.4.0) mini_portile2 (2.4.0)
minitest (5.11.3) minitest (5.13.0)
msgpack (1.2.9) msgpack (1.3.1)
multi_json (1.13.1) multi_json (1.14.1)
nio4r (2.3.1) nio4r (2.5.2)
nokogiri (1.10.3) nokogiri (1.10.7)
mini_portile2 (~> 2.4.0) mini_portile2 (~> 2.4.0)
parallel (1.17.0) parallel (1.19.1)
parser (2.6.3.0) parser (2.7.0.0)
ast (~> 2.4.0) ast (~> 2.4.0)
pg (1.1.4) pg (1.2.0)
pry (0.12.2) pry (0.12.2)
coderay (~> 1.1.0) coderay (~> 1.1.0)
method_source (~> 0.9.0) method_source (~> 0.9.0)
pry-byebug (3.7.0) pry-byebug (3.7.0)
byebug (~> 11.0) byebug (~> 11.0)
pry (~> 0.10) pry (~> 0.10)
public_suffix (3.0.3) public_suffix (4.0.1)
puma (3.12.0) puma (4.3.1)
nio4r (~> 2.0)
pygments.rb (1.2.1) pygments.rb (1.2.1)
multi_json (>= 1.0.0) multi_json (>= 1.0.0)
rack (2.0.7) rack (2.0.8)
rack-proxy (0.6.5) rack-proxy (0.6.5)
rack rack
rack-test (1.1.0) rack-test (1.1.0)
rack (>= 1.0, < 3) rack (>= 1.0, < 3)
rails (6.0.0.beta3) rails (6.0.2.1)
actioncable (= 6.0.0.beta3) actioncable (= 6.0.2.1)
actionmailbox (= 6.0.0.beta3) actionmailbox (= 6.0.2.1)
actionmailer (= 6.0.0.beta3) actionmailer (= 6.0.2.1)
actionpack (= 6.0.0.beta3) actionpack (= 6.0.2.1)
actiontext (= 6.0.0.beta3) actiontext (= 6.0.2.1)
actionview (= 6.0.0.beta3) actionview (= 6.0.2.1)
activejob (= 6.0.0.beta3) activejob (= 6.0.2.1)
activemodel (= 6.0.0.beta3) activemodel (= 6.0.2.1)
activerecord (= 6.0.0.beta3) activerecord (= 6.0.2.1)
activestorage (= 6.0.0.beta3) activestorage (= 6.0.2.1)
activesupport (= 6.0.0.beta3) activesupport (= 6.0.2.1)
bundler (>= 1.3.0) bundler (>= 1.3.0)
railties (= 6.0.0.beta3) railties (= 6.0.2.1)
sprockets-rails (>= 2.0.0) sprockets-rails (>= 2.0.0)
rails-controller-testing (1.0.4) rails-controller-testing (1.0.4)
actionpack (>= 5.0.1.x) actionpack (>= 5.0.1.x)
@ -161,105 +154,107 @@ GEM
rails-dom-testing (2.0.3) rails-dom-testing (2.0.3)
activesupport (>= 4.2.0) activesupport (>= 4.2.0)
nokogiri (>= 1.6) nokogiri (>= 1.6)
rails-html-sanitizer (1.0.4) rails-html-sanitizer (1.3.0)
loofah (~> 2.2, >= 2.2.2) loofah (~> 2.3)
railties (6.0.0.beta3) railties (6.0.2.1)
actionpack (= 6.0.0.beta3) actionpack (= 6.0.2.1)
activesupport (= 6.0.0.beta3) activesupport (= 6.0.2.1)
method_source method_source
rake (>= 0.8.7) rake (>= 0.8.7)
thor (>= 0.20.3, < 2.0) thor (>= 0.20.3, < 2.0)
rainbow (3.0.0) rainbow (3.0.0)
rake (12.3.2) rake (13.0.1)
rb-fsevent (0.10.3) rb-fsevent (0.10.3)
rb-inotify (0.10.0) rb-inotify (0.10.1)
ffi (~> 1.0) ffi (~> 1.0)
redcarpet (3.4.0) redcarpet (3.5.0)
regexp_parser (1.3.0) regexp_parser (1.6.0)
rspec (3.8.0) rspec (3.9.0)
rspec-core (~> 3.8.0) rspec-core (~> 3.9.0)
rspec-expectations (~> 3.8.0) rspec-expectations (~> 3.9.0)
rspec-mocks (~> 3.8.0) rspec-mocks (~> 3.9.0)
rspec-core (3.8.2) rspec-core (3.9.0)
rspec-support (~> 3.8.0) rspec-support (~> 3.9.0)
rspec-expectations (3.8.4) rspec-expectations (3.9.0)
diff-lcs (>= 1.2.0, < 2.0) diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.8.0) rspec-support (~> 3.9.0)
rspec-mocks (3.8.1) rspec-mocks (3.9.0)
diff-lcs (>= 1.2.0, < 2.0) diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.8.0) rspec-support (~> 3.9.0)
rspec-rails (3.8.2) rspec-rails (3.9.0)
actionpack (>= 3.0) actionpack (>= 3.0)
activesupport (>= 3.0) activesupport (>= 3.0)
railties (>= 3.0) railties (>= 3.0)
rspec-core (~> 3.8.0) rspec-core (~> 3.9.0)
rspec-expectations (~> 3.8.0) rspec-expectations (~> 3.9.0)
rspec-mocks (~> 3.8.0) rspec-mocks (~> 3.9.0)
rspec-support (~> 3.8.0) rspec-support (~> 3.9.0)
rspec-support (3.8.2) rspec-support (3.9.0)
rubocop (0.71.0) rubocop (0.78.0)
jaro_winkler (~> 1.5.1) jaro_winkler (~> 1.5.1)
parallel (~> 1.10) parallel (~> 1.10)
parser (>= 2.6) parser (>= 2.6)
rainbow (>= 2.2.2, < 4.0) rainbow (>= 2.2.2, < 4.0)
ruby-progressbar (~> 1.7) ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 1.7) unicode-display_width (>= 1.4.0, < 1.7)
rubocop-rails (2.0.1) rubocop-rails (2.4.1)
rack (>= 1.1) rack (>= 1.1)
rubocop (>= 0.70.0) rubocop (>= 0.72.0)
ruby-progressbar (1.10.1) ruby-progressbar (1.10.1)
ruby_dep (1.5.0) ruby_dep (1.5.0)
rubyzip (1.2.2) rubyzip (2.0.0)
sass (3.7.3) sass-rails (6.0.0)
sass-listen (~> 4.0.0) sassc-rails (~> 2.1, >= 2.1.1)
sass-listen (4.0.0) sassc (2.2.1)
rb-fsevent (~> 0.9, >= 0.9.4) ffi (~> 1.9)
rb-inotify (~> 0.9, >= 0.9.7) sassc-rails (2.1.2)
sass-rails (5.0.7) railties (>= 4.0.0)
railties (>= 4.0.0, < 6) sassc (>= 2.0)
sass (~> 3.1) sprockets (> 3.0)
sprockets (>= 2.8, < 4.0) sprockets-rails
sprockets-rails (>= 2.0, < 4.0) tilt
tilt (>= 1.1, < 3) selenium-webdriver (3.142.6)
selenium-webdriver (3.141.0) childprocess (>= 0.5, < 4.0)
childprocess (~> 0.5) rubyzip (>= 1.2.2)
rubyzip (~> 1.2, >= 1.2.2)
shoulda-context (1.2.2) shoulda-context (1.2.2)
spring (2.0.2) spring (2.1.0)
activesupport (>= 4.2)
spring-commands-rspec (1.0.4) spring-commands-rspec (1.0.4)
spring (>= 0.9.1) spring (>= 0.9.1)
spring-watcher-listen (2.0.1) spring-watcher-listen (2.0.1)
listen (>= 2.7, < 4.0) listen (>= 2.7, < 4.0)
spring (>= 1.2, < 3.0) spring (>= 1.2, < 3.0)
sprockets (3.7.2) sprockets (4.0.0)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
rack (> 1, < 3) rack (> 1, < 3)
sprockets-rails (3.2.1) sprockets-rails (3.2.1)
actionpack (>= 4.0) actionpack (>= 4.0)
activesupport (>= 4.0) activesupport (>= 4.0)
sprockets (>= 3.0.0) sprockets (>= 3.0.0)
sqlite3 (1.3.13) sqlite3 (1.4.2)
thor (0.20.3) thor (1.0.1)
thread_safe (0.3.6) thread_safe (0.3.6)
tilt (2.0.9) tilt (2.0.10)
turbolinks (5.2.0) turbolinks (5.2.1)
turbolinks-source (~> 5.2) turbolinks-source (~> 5.2)
turbolinks-source (5.2.0) turbolinks-source (5.2.0)
tzinfo (1.2.5) tzinfo (1.2.6)
thread_safe (~> 0.1) thread_safe (~> 0.1)
unicode-display_width (1.6.0) unicode-display_width (1.6.0)
webpacker (4.0.2) webdrivers (4.1.3)
nokogiri (~> 1.6)
rubyzip (>= 1.3.0)
selenium-webdriver (>= 3.0, < 4.0)
webpacker (4.2.2)
activesupport (>= 4.2) activesupport (>= 4.2)
rack-proxy (>= 0.6.1) rack-proxy (>= 0.6.1)
railties (>= 4.2) railties (>= 4.2)
websocket-driver (0.7.0) websocket-driver (0.7.1)
websocket-extensions (>= 0.1.0) websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.3) websocket-extensions (0.1.4)
xpath (3.2.0) xpath (3.2.0)
nokogiri (~> 1.8) nokogiri (~> 1.8)
yard (0.9.18) yard (0.9.20)
zeitwerk (1.4.3) zeitwerk (2.2.2)
zeus (0.15.14) zeus (0.15.14)
method_source (>= 0.6.7) method_source (>= 0.6.7)
@ -267,42 +262,37 @@ PLATFORMS
ruby ruby
DEPENDENCIES DEPENDENCIES
activerecord-jdbc-adapter
activerecord-jdbcsqlite3-adapter
appraisal (= 2.2.0) appraisal (= 2.2.0)
bcrypt (~> 3.1.7) bcrypt (~> 3.1.7)
bootsnap (>= 1.4.1) bootsnap (>= 1.4.2)
bundler (~> 1.1) bundler (~> 1.1)
capybara (>= 2.15) capybara (>= 2.15)
chromedriver-helper
fssm fssm
jbuilder (~> 2.5) jbuilder (~> 2.7)
jdbc-sqlite3
jruby-openssl
listen (>= 3.0.5, < 3.2) listen (>= 3.0.5, < 3.2)
pg (~> 1.1) pg (>= 0.18, < 2.0)
pry pry
pry-byebug pry-byebug
puma (~> 3.11) puma (~> 4.1)
pygments.rb pygments.rb
rails (~> 6.0.0.beta3) rails (= 6.0.2.1)
rails-controller-testing (>= 1.0.1) rails-controller-testing (>= 1.0.1)
rake (= 12.3.2) rake (= 13.0.1)
redcarpet redcarpet
rspec (~> 3.6) rspec (~> 3.9)
rspec-rails (~> 3.6) rspec-rails (~> 3.9)
rubocop rubocop
rubocop-rails rubocop-rails
sass-rails (~> 5.0) sass-rails (>= 6)
selenium-webdriver selenium-webdriver
shoulda-context (~> 1.2.0) shoulda-context (~> 1.2.0)
spring spring
spring-commands-rspec spring-commands-rspec
spring-watcher-listen (~> 2.0.0) spring-watcher-listen (~> 2.0.0)
sqlite3 (~> 1.3.6) sqlite3 (~> 1.4)
therubyrhino
turbolinks (~> 5) turbolinks (~> 5)
webpacker (>= 4.0.0.rc3) webdrivers
webpacker (~> 4.0)
yard yard
zeus zeus

View file

@ -6,7 +6,7 @@ describe 'shoulda-matchers integrates with an ActiveModel project' do
add_shoulda_matchers_to_project( add_shoulda_matchers_to_project(
test_frameworks: [:rspec], test_frameworks: [:rspec],
libraries: [:active_model] libraries: [:active_model],
) )
write_file 'load_dependencies.rb', <<-FILE write_file 'load_dependencies.rb', <<-FILE

View file

@ -9,7 +9,7 @@ describe 'shoulda-matchers has independent matchers, specifically delegate_metho
add_shoulda_context_to_project(manually: true) add_shoulda_context_to_project(manually: true)
add_shoulda_matchers_to_project( add_shoulda_matchers_to_project(
test_frameworks: [default_test_framework], test_frameworks: [default_test_framework],
manually: true manually: true,
) )
end end
@ -56,7 +56,7 @@ describe 'shoulda-matchers has independent matchers, specifically delegate_metho
expect(result).to indicate_number_of_tests_was_run(1) expect(result).to indicate_number_of_tests_was_run(1)
expect(result).to have_output( expect(result).to have_output(
'Courier should delegate #deliver to the #post_office object' 'Courier should delegate #deliver to the #post_office object',
) )
end end
@ -67,7 +67,7 @@ describe 'shoulda-matchers has independent matchers, specifically delegate_metho
add_rspec_to_project add_rspec_to_project
add_shoulda_matchers_to_project( add_shoulda_matchers_to_project(
manually: true, manually: true,
with_configuration: false with_configuration: false,
) )
write_file 'spec/spec_helper.rb', <<-FILE write_file 'spec/spec_helper.rb', <<-FILE
require 'shoulda/matchers/independent' require 'shoulda/matchers/independent'
@ -119,7 +119,7 @@ describe 'shoulda-matchers has independent matchers, specifically delegate_metho
expect(result).to indicate_number_of_tests_was_run(1) expect(result).to indicate_number_of_tests_was_run(1)
expect(result).to have_output( expect(result).to have_output(
/Courier\s+should delegate #deliver to the #post_office object/ /Courier\s+is expected to delegate #deliver to the #post_office object/,
) )
end end
end end

View file

@ -14,7 +14,7 @@ describe 'shoulda-matchers integrates with multiple libraries' do
end end
FILE FILE
run_rake_tasks!(*%w(db:drop db:create db:migrate)) run_rake_tasks!('db:drop', 'db:create', 'db:migrate')
write_file 'app/models/user.rb', <<-FILE write_file 'app/models/user.rb', <<-FILE
class User < ActiveRecord::Base class User < ActiveRecord::Base
@ -35,7 +35,7 @@ describe 'shoulda-matchers integrates with multiple libraries' do
add_rspec_rails_to_project! add_rspec_rails_to_project!
add_shoulda_matchers_to_project( add_shoulda_matchers_to_project(
test_frameworks: [:rspec], test_frameworks: [:rspec],
libraries: [:active_record, :active_model] libraries: [:active_record, :active_model],
) )
end end
end end
@ -45,10 +45,10 @@ describe 'shoulda-matchers integrates with multiple libraries' do
result = run_rspec_suite result = run_rspec_suite
expect(result).to have_output('2 examples, 0 failures') expect(result).to have_output('2 examples, 0 failures')
expect(result).to have_output( expect(result).to have_output(
'should validate that :name cannot be empty/falsy' 'is expected to validate that :name cannot be empty/falsy',
) )
expect(result).to have_output( expect(result).to have_output(
'should validate that :name is case-sensitively unique' 'is expected to validate that :name is case-sensitively unique',
) )
end end
end end

View file

@ -14,7 +14,7 @@ describe 'shoulda-matchers integrates with Rails' do
end end
FILE FILE
run_rake_tasks!(*%w(db:drop db:create db:migrate)) run_rake_tasks!('db:drop', 'db:create', 'db:migrate')
write_file 'app/models/user.rb', <<-FILE write_file 'app/models/user.rb', <<-FILE
class User < ActiveRecord::Base class User < ActiveRecord::Base
@ -39,7 +39,7 @@ describe 'shoulda-matchers integrates with Rails' do
add_gems_for_n_unit add_gems_for_n_unit
add_shoulda_matchers_to_project( add_shoulda_matchers_to_project(
test_frameworks: [default_test_framework], test_frameworks: [default_test_framework],
libraries: [:rails] libraries: [:rails],
) )
end end
@ -51,7 +51,7 @@ describe 'shoulda-matchers integrates with Rails' do
add_gems_for_rspec add_gems_for_rspec
add_shoulda_matchers_to_project( add_shoulda_matchers_to_project(
test_frameworks: [:rspec], test_frameworks: [:rspec],
libraries: [:rails] libraries: [:rails],
) )
end end
@ -69,7 +69,7 @@ describe 'shoulda-matchers integrates with Rails' do
add_shoulda_matchers_to_project( add_shoulda_matchers_to_project(
test_frameworks: [:rspec], test_frameworks: [:rspec],
libraries: [:rails], libraries: [:rails],
manually: true manually: true,
) )
end end
@ -84,7 +84,7 @@ describe 'shoulda-matchers integrates with Rails' do
add_gems_for_rspec add_gems_for_rspec
add_shoulda_matchers_to_project( add_shoulda_matchers_to_project(
test_frameworks: [:rspec, nil], test_frameworks: [:rspec, nil],
libraries: [:rails] libraries: [:rails],
) )
end end
@ -125,7 +125,7 @@ describe 'shoulda-matchers integrates with Rails' do
expect(result).to indicate_that_tests_were_run(unit: 1, functional: 1) expect(result).to indicate_that_tests_were_run(unit: 1, functional: 1)
expect(result).to have_output( expect(result).to have_output(
'User should validate that :name cannot be empty/falsy' 'User should validate that :name cannot be empty/falsy',
) )
expect(result).to have_output('should respond with 200') expect(result).to have_output('should respond with 200')
end end
@ -149,8 +149,8 @@ describe 'shoulda-matchers integrates with Rails' do
expect(result).to have_output('2 examples, 0 failures') expect(result).to have_output('2 examples, 0 failures')
expect(result).to have_output( expect(result).to have_output(
'should validate that :name cannot be empty/falsy' 'is expected to validate that :name cannot be empty/falsy',
) )
expect(result).to have_output('should respond with 200') expect(result).to have_output('is expected to respond with 200')
end end
end end

View file

@ -73,8 +73,6 @@ module AcceptanceTests
bundle.remove_gem 'byebug' bundle.remove_gem 'byebug'
bundle.remove_gem 'web-console' bundle.remove_gem 'web-console'
bundle.add_gem 'pg' bundle.add_gem 'pg'
bundle.remove_gem 'sqlite3'
bundle.add_gem 'sqlite3', '~> 1.3.6'
end end
fs.open('config/database.yml', 'w') do |file| fs.open('config/database.yml', 'w') do |file|