html5sortable-rails 0.9.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (95) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -0
  3. data/.rspec +3 -0
  4. data/.travis.yml +5 -0
  5. data/Gemfile +6 -0
  6. data/Gemfile.lock +86 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +32 -0
  9. data/Rakefile +6 -0
  10. data/bin/console +14 -0
  11. data/bin/setup +8 -0
  12. data/html5sortable-rails.gemspec +27 -0
  13. data/html5sortable-test/.gitignore +30 -0
  14. data/html5sortable-test/.ruby-version +1 -0
  15. data/html5sortable-test/Gemfile +62 -0
  16. data/html5sortable-test/Gemfile.lock +218 -0
  17. data/html5sortable-test/README.md +24 -0
  18. data/html5sortable-test/Rakefile +6 -0
  19. data/html5sortable-test/app/assets/config/manifest.js +3 -0
  20. data/html5sortable-test/app/assets/images/.keep +0 -0
  21. data/html5sortable-test/app/assets/javascripts/application.js +17 -0
  22. data/html5sortable-test/app/assets/javascripts/cable.js +13 -0
  23. data/html5sortable-test/app/assets/javascripts/channels/.keep +0 -0
  24. data/html5sortable-test/app/assets/stylesheets/application.css +15 -0
  25. data/html5sortable-test/app/channels/application_cable/channel.rb +4 -0
  26. data/html5sortable-test/app/channels/application_cable/connection.rb +4 -0
  27. data/html5sortable-test/app/controllers/application_controller.rb +2 -0
  28. data/html5sortable-test/app/controllers/concerns/.keep +0 -0
  29. data/html5sortable-test/app/helpers/application_helper.rb +2 -0
  30. data/html5sortable-test/app/jobs/application_job.rb +2 -0
  31. data/html5sortable-test/app/mailers/application_mailer.rb +4 -0
  32. data/html5sortable-test/app/models/application_record.rb +3 -0
  33. data/html5sortable-test/app/models/concerns/.keep +0 -0
  34. data/html5sortable-test/app/views/layouts/application.html.erb +15 -0
  35. data/html5sortable-test/app/views/layouts/mailer.html.erb +13 -0
  36. data/html5sortable-test/app/views/layouts/mailer.text.erb +1 -0
  37. data/html5sortable-test/bin/bundle +3 -0
  38. data/html5sortable-test/bin/rails +9 -0
  39. data/html5sortable-test/bin/rake +9 -0
  40. data/html5sortable-test/bin/setup +36 -0
  41. data/html5sortable-test/bin/spring +17 -0
  42. data/html5sortable-test/bin/update +31 -0
  43. data/html5sortable-test/bin/yarn +11 -0
  44. data/html5sortable-test/config.ru +5 -0
  45. data/html5sortable-test/config/application.rb +19 -0
  46. data/html5sortable-test/config/boot.rb +4 -0
  47. data/html5sortable-test/config/cable.yml +10 -0
  48. data/html5sortable-test/config/credentials.yml.enc +1 -0
  49. data/html5sortable-test/config/database.yml +25 -0
  50. data/html5sortable-test/config/environment.rb +5 -0
  51. data/html5sortable-test/config/environments/development.rb +61 -0
  52. data/html5sortable-test/config/environments/production.rb +94 -0
  53. data/html5sortable-test/config/environments/test.rb +46 -0
  54. data/html5sortable-test/config/initializers/application_controller_renderer.rb +8 -0
  55. data/html5sortable-test/config/initializers/assets.rb +14 -0
  56. data/html5sortable-test/config/initializers/backtrace_silencers.rb +7 -0
  57. data/html5sortable-test/config/initializers/content_security_policy.rb +25 -0
  58. data/html5sortable-test/config/initializers/cookies_serializer.rb +5 -0
  59. data/html5sortable-test/config/initializers/filter_parameter_logging.rb +4 -0
  60. data/html5sortable-test/config/initializers/inflections.rb +16 -0
  61. data/html5sortable-test/config/initializers/mime_types.rb +4 -0
  62. data/html5sortable-test/config/initializers/wrap_parameters.rb +14 -0
  63. data/html5sortable-test/config/locales/en.yml +33 -0
  64. data/html5sortable-test/config/puma.rb +34 -0
  65. data/html5sortable-test/config/routes.rb +3 -0
  66. data/html5sortable-test/config/spring.rb +6 -0
  67. data/html5sortable-test/config/storage.yml +34 -0
  68. data/html5sortable-test/db/seeds.rb +7 -0
  69. data/html5sortable-test/lib/assets/.keep +0 -0
  70. data/html5sortable-test/lib/tasks/.keep +0 -0
  71. data/html5sortable-test/log/.keep +0 -0
  72. data/html5sortable-test/package.json +5 -0
  73. data/html5sortable-test/public/404.html +67 -0
  74. data/html5sortable-test/public/422.html +67 -0
  75. data/html5sortable-test/public/500.html +66 -0
  76. data/html5sortable-test/public/apple-touch-icon-precomposed.png +0 -0
  77. data/html5sortable-test/public/apple-touch-icon.png +0 -0
  78. data/html5sortable-test/public/favicon.ico +0 -0
  79. data/html5sortable-test/public/robots.txt +1 -0
  80. data/html5sortable-test/test/application_system_test_case.rb +5 -0
  81. data/html5sortable-test/test/controllers/.keep +0 -0
  82. data/html5sortable-test/test/fixtures/.keep +0 -0
  83. data/html5sortable-test/test/fixtures/files/.keep +0 -0
  84. data/html5sortable-test/test/helpers/.keep +0 -0
  85. data/html5sortable-test/test/integration/.keep +0 -0
  86. data/html5sortable-test/test/mailers/.keep +0 -0
  87. data/html5sortable-test/test/models/.keep +0 -0
  88. data/html5sortable-test/test/system/.keep +0 -0
  89. data/html5sortable-test/test/test_helper.rb +10 -0
  90. data/html5sortable-test/tmp/.keep +0 -0
  91. data/html5sortable-test/vendor/.keep +0 -0
  92. data/lib/html5sortable/rails.rb +8 -0
  93. data/lib/html5sortable/rails/version.rb +6 -0
  94. data/vendor/assets/javascripts/html5sortable.js +1094 -0
  95. metadata +194 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: dae7ab5b59f9ad5c032b03daa5f81c324e8f3181
4
+ data.tar.gz: 35a5b1fed9df42f8170e065114d4ed00015d5f8e
5
+ SHA512:
6
+ metadata.gz: 6607a0cf233ff8cbd8638c98be5b9890aef9fef0859e3f158e202251c142129e8a871eb612b69431a4a824baa12ab7b1969083ad23208633e923b4a52c91169e
7
+ data.tar.gz: d52cf528501fde000010c1e89404b950063e3bf158ca24e37f011cee6b71b1a960172dd02d6932e384766661890cc8f1b46d34a9ead045ca3db72cfd7c305ee9
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.4.3
5
+ before_install: gem install bundler -v 1.16.2
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in html5sortable-rails.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,86 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ html5sortable-rails (0.9.3.0)
5
+ railties (> 4.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionpack (5.2.0)
11
+ actionview (= 5.2.0)
12
+ activesupport (= 5.2.0)
13
+ rack (~> 2.0)
14
+ rack-test (>= 0.6.3)
15
+ rails-dom-testing (~> 2.0)
16
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
17
+ actionview (5.2.0)
18
+ activesupport (= 5.2.0)
19
+ builder (~> 3.1)
20
+ erubi (~> 1.4)
21
+ rails-dom-testing (~> 2.0)
22
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
23
+ activesupport (5.2.0)
24
+ concurrent-ruby (~> 1.0, >= 1.0.2)
25
+ i18n (>= 0.7, < 2)
26
+ minitest (~> 5.1)
27
+ tzinfo (~> 1.1)
28
+ builder (3.2.3)
29
+ concurrent-ruby (1.0.5)
30
+ crass (1.0.4)
31
+ diff-lcs (1.3)
32
+ erubi (1.7.1)
33
+ i18n (1.0.1)
34
+ concurrent-ruby (~> 1.0)
35
+ loofah (2.2.2)
36
+ crass (~> 1.0.2)
37
+ nokogiri (>= 1.5.9)
38
+ method_source (0.9.0)
39
+ mini_portile2 (2.3.0)
40
+ minitest (5.11.3)
41
+ nokogiri (1.8.3)
42
+ mini_portile2 (~> 2.3.0)
43
+ rack (2.0.5)
44
+ rack-test (1.0.0)
45
+ rack (>= 1.0, < 3)
46
+ rails-dom-testing (2.0.3)
47
+ activesupport (>= 4.2.0)
48
+ nokogiri (>= 1.6)
49
+ rails-html-sanitizer (1.0.4)
50
+ loofah (~> 2.2, >= 2.2.2)
51
+ railties (5.2.0)
52
+ actionpack (= 5.2.0)
53
+ activesupport (= 5.2.0)
54
+ method_source
55
+ rake (>= 0.8.7)
56
+ thor (>= 0.18.1, < 2.0)
57
+ rake (10.5.0)
58
+ rspec (3.7.0)
59
+ rspec-core (~> 3.7.0)
60
+ rspec-expectations (~> 3.7.0)
61
+ rspec-mocks (~> 3.7.0)
62
+ rspec-core (3.7.1)
63
+ rspec-support (~> 3.7.0)
64
+ rspec-expectations (3.7.0)
65
+ diff-lcs (>= 1.2.0, < 2.0)
66
+ rspec-support (~> 3.7.0)
67
+ rspec-mocks (3.7.0)
68
+ diff-lcs (>= 1.2.0, < 2.0)
69
+ rspec-support (~> 3.7.0)
70
+ rspec-support (3.7.1)
71
+ thor (0.20.0)
72
+ thread_safe (0.3.6)
73
+ tzinfo (1.2.5)
74
+ thread_safe (~> 0.1)
75
+
76
+ PLATFORMS
77
+ ruby
78
+
79
+ DEPENDENCIES
80
+ bundler (~> 1.16)
81
+ html5sortable-rails!
82
+ rake (~> 10.0)
83
+ rspec (~> 3.0)
84
+
85
+ BUNDLED WITH
86
+ 1.16.2
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 kendocode
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # Html5sortable::Rails
2
+
3
+ ## Installation
4
+
5
+ Add this line to your application's Gemfile:
6
+
7
+ ```ruby
8
+ gem 'html5sortable-rails'
9
+ ```
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install html5sortable-rails
18
+
19
+
20
+ ## Development
21
+
22
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
23
+
24
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
25
+
26
+ ## Contributing
27
+
28
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/html5sortable-rails.
29
+
30
+ ## License
31
+
32
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "html5sortable/rails"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,27 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "html5sortable/rails/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "html5sortable-rails"
8
+ spec.version = Html5sortable::Rails::VERSION
9
+ spec.authors = ["kendocode"]
10
+ spec.email = ["info@kendocoding.com"]
11
+
12
+ spec.summary = "Wraps the excellent html5sortable javascript library ofr easy inclusion in the Rails Asset Pipeline."
13
+ spec.homepage = "https://github.com/kendocode/html5sortable-rails.git"
14
+ spec.license = "MIT"
15
+
16
+ # Specify which files should be added to the gem when it is released.
17
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
18
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
19
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
20
+ end
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.16"
24
+ spec.add_development_dependency "rake", "~> 10.0"
25
+ spec.add_development_dependency "rspec", "~> 3.0"
26
+ spec.add_dependency "railties", "> 4.0"
27
+ end
@@ -0,0 +1,30 @@
1
+ # See https://help.github.com/articles/ignoring-files for more about ignoring files.
2
+ #
3
+ # If you find yourself ignoring temporary files generated by your text editor
4
+ # or operating system, you probably want to add a global ignore instead:
5
+ # git config --global core.excludesfile '~/.gitignore_global'
6
+
7
+ # Ignore bundler config.
8
+ /.bundle
9
+
10
+ # Ignore the default SQLite database.
11
+ /db/*.sqlite3
12
+ /db/*.sqlite3-journal
13
+
14
+ # Ignore all logfiles and tempfiles.
15
+ /log/*
16
+ /tmp/*
17
+ !/log/.keep
18
+ !/tmp/.keep
19
+
20
+ # Ignore uploaded files in development
21
+ /storage/*
22
+
23
+ /node_modules
24
+ /yarn-error.log
25
+
26
+ /public/assets
27
+ .byebug_history
28
+
29
+ # Ignore master key for decrypting credentials and more.
30
+ /config/master.key
@@ -0,0 +1 @@
1
+ 2.4.3
@@ -0,0 +1,62 @@
1
+ source 'https://rubygems.org'
2
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3
+
4
+ ruby '2.4.3'
5
+
6
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
7
+ gem 'rails', '~> 5.2.0'
8
+ # Use sqlite3 as the database for Active Record
9
+ gem 'sqlite3'
10
+ # Use Puma as the app server
11
+ gem 'puma', '~> 3.11'
12
+ # Use SCSS for stylesheets
13
+ gem 'sass-rails', '~> 5.0'
14
+ # Use Uglifier as compressor for JavaScript assets
15
+ gem 'uglifier', '>= 1.3.0'
16
+ # See https://github.com/rails/execjs#readme for more supported runtimes
17
+ # gem 'mini_racer', platforms: :ruby
18
+
19
+ # Use CoffeeScript for .coffee assets and views
20
+ gem 'coffee-rails', '~> 4.2'
21
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
22
+ gem 'turbolinks', '~> 5'
23
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
24
+ gem 'jbuilder', '~> 2.5'
25
+ # Use Redis adapter to run Action Cable in production
26
+ # gem 'redis', '~> 4.0'
27
+ # Use ActiveModel has_secure_password
28
+ # gem 'bcrypt', '~> 3.1.7'
29
+
30
+ # Use ActiveStorage variant
31
+ # gem 'mini_magick', '~> 4.8'
32
+
33
+ # Use Capistrano for deployment
34
+ # gem 'capistrano-rails', group: :development
35
+
36
+ # Reduces boot times through caching; required in config/boot.rb
37
+ gem 'bootsnap', '>= 1.1.0', require: false
38
+
39
+ group :development, :test do
40
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
41
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
42
+ end
43
+
44
+ group :development do
45
+ # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
46
+ gem 'web-console', '>= 3.3.0'
47
+ gem 'listen', '>= 3.0.5', '< 3.2'
48
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
49
+ gem 'spring'
50
+ gem 'spring-watcher-listen', '~> 2.0.0'
51
+ end
52
+
53
+ group :test do
54
+ # Adds support for Capybara system testing and selenium driver
55
+ gem 'capybara', '>= 2.15', '< 4.0'
56
+ gem 'selenium-webdriver'
57
+ # Easy installation and use of chromedriver to run system tests with Chrome
58
+ gem 'chromedriver-helper'
59
+ end
60
+
61
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
62
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
@@ -0,0 +1,218 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ actioncable (5.2.0)
5
+ actionpack (= 5.2.0)
6
+ nio4r (~> 2.0)
7
+ websocket-driver (>= 0.6.1)
8
+ actionmailer (5.2.0)
9
+ actionpack (= 5.2.0)
10
+ actionview (= 5.2.0)
11
+ activejob (= 5.2.0)
12
+ mail (~> 2.5, >= 2.5.4)
13
+ rails-dom-testing (~> 2.0)
14
+ actionpack (5.2.0)
15
+ actionview (= 5.2.0)
16
+ activesupport (= 5.2.0)
17
+ rack (~> 2.0)
18
+ rack-test (>= 0.6.3)
19
+ rails-dom-testing (~> 2.0)
20
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
21
+ actionview (5.2.0)
22
+ activesupport (= 5.2.0)
23
+ builder (~> 3.1)
24
+ erubi (~> 1.4)
25
+ rails-dom-testing (~> 2.0)
26
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
27
+ activejob (5.2.0)
28
+ activesupport (= 5.2.0)
29
+ globalid (>= 0.3.6)
30
+ activemodel (5.2.0)
31
+ activesupport (= 5.2.0)
32
+ activerecord (5.2.0)
33
+ activemodel (= 5.2.0)
34
+ activesupport (= 5.2.0)
35
+ arel (>= 9.0)
36
+ activestorage (5.2.0)
37
+ actionpack (= 5.2.0)
38
+ activerecord (= 5.2.0)
39
+ marcel (~> 0.3.1)
40
+ activesupport (5.2.0)
41
+ concurrent-ruby (~> 1.0, >= 1.0.2)
42
+ i18n (>= 0.7, < 2)
43
+ minitest (~> 5.1)
44
+ tzinfo (~> 1.1)
45
+ addressable (2.5.2)
46
+ public_suffix (>= 2.0.2, < 4.0)
47
+ archive-zip (0.11.0)
48
+ io-like (~> 0.3.0)
49
+ arel (9.0.0)
50
+ bindex (0.5.0)
51
+ bootsnap (1.3.0)
52
+ msgpack (~> 1.0)
53
+ builder (3.2.3)
54
+ byebug (10.0.2)
55
+ capybara (3.2.1)
56
+ addressable
57
+ mini_mime (>= 0.1.3)
58
+ nokogiri (~> 1.8)
59
+ rack (>= 1.6.0)
60
+ rack-test (>= 0.6.3)
61
+ xpath (~> 3.1)
62
+ childprocess (0.9.0)
63
+ ffi (~> 1.0, >= 1.0.11)
64
+ chromedriver-helper (1.2.0)
65
+ archive-zip (~> 0.10)
66
+ nokogiri (~> 1.8)
67
+ coffee-rails (4.2.2)
68
+ coffee-script (>= 2.2.0)
69
+ railties (>= 4.0.0)
70
+ coffee-script (2.4.1)
71
+ coffee-script-source
72
+ execjs
73
+ coffee-script-source (1.12.2)
74
+ concurrent-ruby (1.0.5)
75
+ crass (1.0.4)
76
+ erubi (1.7.1)
77
+ execjs (2.7.0)
78
+ ffi (1.9.25)
79
+ globalid (0.4.1)
80
+ activesupport (>= 4.2.0)
81
+ i18n (1.0.1)
82
+ concurrent-ruby (~> 1.0)
83
+ io-like (0.3.0)
84
+ jbuilder (2.7.0)
85
+ activesupport (>= 4.2.0)
86
+ multi_json (>= 1.2)
87
+ listen (3.1.5)
88
+ rb-fsevent (~> 0.9, >= 0.9.4)
89
+ rb-inotify (~> 0.9, >= 0.9.7)
90
+ ruby_dep (~> 1.2)
91
+ loofah (2.2.2)
92
+ crass (~> 1.0.2)
93
+ nokogiri (>= 1.5.9)
94
+ mail (2.7.0)
95
+ mini_mime (>= 0.1.1)
96
+ marcel (0.3.2)
97
+ mimemagic (~> 0.3.2)
98
+ method_source (0.9.0)
99
+ mimemagic (0.3.2)
100
+ mini_mime (1.0.0)
101
+ mini_portile2 (2.3.0)
102
+ minitest (5.11.3)
103
+ msgpack (1.2.4)
104
+ multi_json (1.13.1)
105
+ nio4r (2.3.1)
106
+ nokogiri (1.8.3)
107
+ mini_portile2 (~> 2.3.0)
108
+ public_suffix (3.0.2)
109
+ puma (3.11.4)
110
+ rack (2.0.5)
111
+ rack-test (1.0.0)
112
+ rack (>= 1.0, < 3)
113
+ rails (5.2.0)
114
+ actioncable (= 5.2.0)
115
+ actionmailer (= 5.2.0)
116
+ actionpack (= 5.2.0)
117
+ actionview (= 5.2.0)
118
+ activejob (= 5.2.0)
119
+ activemodel (= 5.2.0)
120
+ activerecord (= 5.2.0)
121
+ activestorage (= 5.2.0)
122
+ activesupport (= 5.2.0)
123
+ bundler (>= 1.3.0)
124
+ railties (= 5.2.0)
125
+ sprockets-rails (>= 2.0.0)
126
+ rails-dom-testing (2.0.3)
127
+ activesupport (>= 4.2.0)
128
+ nokogiri (>= 1.6)
129
+ rails-html-sanitizer (1.0.4)
130
+ loofah (~> 2.2, >= 2.2.2)
131
+ railties (5.2.0)
132
+ actionpack (= 5.2.0)
133
+ activesupport (= 5.2.0)
134
+ method_source
135
+ rake (>= 0.8.7)
136
+ thor (>= 0.18.1, < 2.0)
137
+ rake (12.3.1)
138
+ rb-fsevent (0.10.3)
139
+ rb-inotify (0.9.10)
140
+ ffi (>= 0.5.0, < 2)
141
+ ruby_dep (1.5.0)
142
+ rubyzip (1.2.1)
143
+ sass (3.5.6)
144
+ sass-listen (~> 4.0.0)
145
+ sass-listen (4.0.0)
146
+ rb-fsevent (~> 0.9, >= 0.9.4)
147
+ rb-inotify (~> 0.9, >= 0.9.7)
148
+ sass-rails (5.0.7)
149
+ railties (>= 4.0.0, < 6)
150
+ sass (~> 3.1)
151
+ sprockets (>= 2.8, < 4.0)
152
+ sprockets-rails (>= 2.0, < 4.0)
153
+ tilt (>= 1.1, < 3)
154
+ selenium-webdriver (3.12.0)
155
+ childprocess (~> 0.5)
156
+ rubyzip (~> 1.2)
157
+ spring (2.0.2)
158
+ activesupport (>= 4.2)
159
+ spring-watcher-listen (2.0.1)
160
+ listen (>= 2.7, < 4.0)
161
+ spring (>= 1.2, < 3.0)
162
+ sprockets (3.7.2)
163
+ concurrent-ruby (~> 1.0)
164
+ rack (> 1, < 3)
165
+ sprockets-rails (3.2.1)
166
+ actionpack (>= 4.0)
167
+ activesupport (>= 4.0)
168
+ sprockets (>= 3.0.0)
169
+ sqlite3 (1.3.13)
170
+ thor (0.20.0)
171
+ thread_safe (0.3.6)
172
+ tilt (2.0.8)
173
+ turbolinks (5.1.1)
174
+ turbolinks-source (~> 5.1)
175
+ turbolinks-source (5.1.0)
176
+ tzinfo (1.2.5)
177
+ thread_safe (~> 0.1)
178
+ uglifier (4.1.11)
179
+ execjs (>= 0.3.0, < 3)
180
+ web-console (3.6.2)
181
+ actionview (>= 5.0)
182
+ activemodel (>= 5.0)
183
+ bindex (>= 0.4.0)
184
+ railties (>= 5.0)
185
+ websocket-driver (0.7.0)
186
+ websocket-extensions (>= 0.1.0)
187
+ websocket-extensions (0.1.3)
188
+ xpath (3.1.0)
189
+ nokogiri (~> 1.8)
190
+
191
+ PLATFORMS
192
+ ruby
193
+
194
+ DEPENDENCIES
195
+ bootsnap (>= 1.1.0)
196
+ byebug
197
+ capybara (>= 2.15, < 4.0)
198
+ chromedriver-helper
199
+ coffee-rails (~> 4.2)
200
+ jbuilder (~> 2.5)
201
+ listen (>= 3.0.5, < 3.2)
202
+ puma (~> 3.11)
203
+ rails (~> 5.2.0)
204
+ sass-rails (~> 5.0)
205
+ selenium-webdriver
206
+ spring
207
+ spring-watcher-listen (~> 2.0.0)
208
+ sqlite3
209
+ turbolinks (~> 5)
210
+ tzinfo-data
211
+ uglifier (>= 1.3.0)
212
+ web-console (>= 3.3.0)
213
+
214
+ RUBY VERSION
215
+ ruby 2.4.3p205
216
+
217
+ BUNDLED WITH
218
+ 1.16.2