parcel-rails 0.1.0.pre → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +5 -0
- data/.rubocop.yml +7 -0
- data/Gemfile +4 -2
- data/Gemfile.lock +23 -1
- data/README.md +35 -11
- data/Rakefile +5 -3
- data/bin/console +4 -3
- data/examples/railsapp/.gitignore +23 -0
- data/examples/railsapp/Gemfile +58 -0
- data/examples/railsapp/Gemfile.lock +207 -0
- data/examples/railsapp/Procfile +2 -0
- data/examples/railsapp/README.md +24 -0
- data/examples/railsapp/Rakefile +6 -0
- data/examples/railsapp/app/assets/config/manifest.js +3 -0
- data/examples/railsapp/app/assets/images/.keep +0 -0
- data/examples/railsapp/app/assets/javascripts/application.js +15 -0
- data/examples/railsapp/app/assets/javascripts/cable.js +13 -0
- data/examples/railsapp/app/assets/javascripts/channels/.keep +0 -0
- data/examples/railsapp/app/assets/javascripts/hello.coffee +3 -0
- data/examples/railsapp/app/assets/stylesheets/application.css +15 -0
- data/examples/railsapp/app/assets/stylesheets/hello.scss +3 -0
- data/examples/railsapp/app/channels/application_cable/channel.rb +4 -0
- data/examples/railsapp/app/channels/application_cable/connection.rb +4 -0
- data/examples/railsapp/app/controllers/application_controller.rb +3 -0
- data/examples/railsapp/app/controllers/concerns/.keep +0 -0
- data/examples/railsapp/app/controllers/hello_controller.rb +4 -0
- data/examples/railsapp/app/helpers/application_helper.rb +2 -0
- data/examples/railsapp/app/helpers/hello_helper.rb +2 -0
- data/examples/railsapp/app/javascript/application.js +1 -0
- data/examples/railsapp/app/javascript/entry.js +3 -0
- data/examples/railsapp/app/jobs/application_job.rb +2 -0
- data/examples/railsapp/app/mailers/application_mailer.rb +4 -0
- data/examples/railsapp/app/models/application_record.rb +3 -0
- data/examples/railsapp/app/models/concerns/.keep +0 -0
- data/examples/railsapp/app/views/hello/index.html.erb +0 -0
- data/examples/railsapp/app/views/layouts/application.html.erb +15 -0
- data/examples/railsapp/app/views/layouts/mailer.html.erb +13 -0
- data/examples/railsapp/app/views/layouts/mailer.text.erb +1 -0
- data/examples/railsapp/bin/bundle +105 -0
- data/examples/railsapp/bin/parcel-build +29 -0
- data/examples/railsapp/bin/parcel-server +29 -0
- data/examples/railsapp/bin/rails +9 -0
- data/examples/railsapp/bin/rake +9 -0
- data/examples/railsapp/bin/setup +38 -0
- data/examples/railsapp/bin/spring +17 -0
- data/examples/railsapp/bin/update +29 -0
- data/examples/railsapp/bin/yarn +11 -0
- data/examples/railsapp/config.ru +5 -0
- data/examples/railsapp/config/application.rb +18 -0
- data/examples/railsapp/config/boot.rb +3 -0
- data/examples/railsapp/config/cable.yml +10 -0
- data/examples/railsapp/config/database.yml +25 -0
- data/examples/railsapp/config/environment.rb +5 -0
- data/examples/railsapp/config/environments/development.rb +54 -0
- data/examples/railsapp/config/environments/production.rb +91 -0
- data/examples/railsapp/config/environments/test.rb +42 -0
- data/examples/railsapp/config/initializers/application_controller_renderer.rb +8 -0
- data/examples/railsapp/config/initializers/assets.rb +14 -0
- data/examples/railsapp/config/initializers/backtrace_silencers.rb +7 -0
- data/examples/railsapp/config/initializers/cookies_serializer.rb +5 -0
- data/examples/railsapp/config/initializers/filter_parameter_logging.rb +4 -0
- data/examples/railsapp/config/initializers/inflections.rb +16 -0
- data/examples/railsapp/config/initializers/mime_types.rb +4 -0
- data/examples/railsapp/config/initializers/parcel.rb +4 -0
- data/examples/railsapp/config/initializers/wrap_parameters.rb +14 -0
- data/examples/railsapp/config/locales/en.yml +33 -0
- data/examples/railsapp/config/puma.rb +56 -0
- data/examples/railsapp/config/routes.rb +3 -0
- data/examples/railsapp/config/secrets.yml +32 -0
- data/examples/railsapp/config/spring.rb +6 -0
- data/examples/railsapp/db/seeds.rb +7 -0
- data/examples/railsapp/lib/assets/.keep +0 -0
- data/examples/railsapp/lib/tasks/.keep +0 -0
- data/examples/railsapp/package.json +8 -0
- data/examples/railsapp/test/application_system_test_case.rb +5 -0
- data/examples/railsapp/test/controllers/.keep +0 -0
- data/examples/railsapp/test/controllers/hello_controller_test.rb +7 -0
- data/examples/railsapp/test/fixtures/.keep +0 -0
- data/examples/railsapp/test/fixtures/files/.keep +0 -0
- data/examples/railsapp/test/helpers/.keep +0 -0
- data/examples/railsapp/test/integration/.keep +0 -0
- data/examples/railsapp/test/mailers/.keep +0 -0
- data/examples/railsapp/test/models/.keep +0 -0
- data/examples/railsapp/test/system/.keep +0 -0
- data/examples/railsapp/test/test_helper.rb +9 -0
- data/examples/railsapp/tmp/.keep +0 -0
- data/examples/railsapp/vendor/.keep +0 -0
- data/exe/parcel-build +8 -0
- data/exe/parcel-server +8 -0
- data/lib/parcel-rails.rb +30 -0
- data/lib/parcel/rails/parcel_generator.rb +16 -0
- data/lib/parcel/rails/runner.rb +37 -0
- data/lib/parcel/rails/tasks.rake +29 -0
- data/lib/parcel/rails/version.rb +3 -1
- data/parcel-rails.gemspec +22 -18
- metadata +122 -6
- data/lib/parcel/rails.rb +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 077eade9202911df2e8fdccfe49980b5cdd13653674c8464e006980c43a60808
|
4
|
+
data.tar.gz: 686396dffd65f280c861ef1a02338b5dbff58236e40eed8024fe104b44424833
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9484de069d081bb7dbbb23dc79aa7000dbfd662b362630440854ce773db0a9814f179def051ccfaba614ff921e0911efcd63f7a4e909413ed3e2a8e3ff0fc2d7
|
7
|
+
data.tar.gz: ff2d12dbddeca25345dcbdff55b0391cd0349cab7e2dfefc4c15c1f4ec7042cb24e2de3256cbe5b5052e9ce755a04e2351673e0345a518c54526f6321b155686
|
data/.gitignore
CHANGED
data/.rubocop.yml
ADDED
data/Gemfile
CHANGED
@@ -1,6 +1,8 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
|
4
6
|
|
5
7
|
# Specify your gem's dependencies in parcel-rails.gemspec
|
6
8
|
gemspec
|
data/Gemfile.lock
CHANGED
@@ -1,12 +1,23 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
parcel-rails (0.
|
4
|
+
parcel-rails (0.9.0.pre)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
+
ast (2.4.0)
|
10
|
+
coderay (1.1.2)
|
9
11
|
diff-lcs (1.3)
|
12
|
+
method_source (0.9.0)
|
13
|
+
parallel (1.12.1)
|
14
|
+
parser (2.4.0.2)
|
15
|
+
ast (~> 2.3)
|
16
|
+
powerpack (0.1.1)
|
17
|
+
pry (0.11.3)
|
18
|
+
coderay (~> 1.1.0)
|
19
|
+
method_source (~> 0.9.0)
|
20
|
+
rainbow (3.0.0)
|
10
21
|
rake (10.5.0)
|
11
22
|
rspec (3.7.0)
|
12
23
|
rspec-core (~> 3.7.0)
|
@@ -21,6 +32,15 @@ GEM
|
|
21
32
|
diff-lcs (>= 1.2.0, < 2.0)
|
22
33
|
rspec-support (~> 3.7.0)
|
23
34
|
rspec-support (3.7.1)
|
35
|
+
rubocop (0.52.1)
|
36
|
+
parallel (~> 1.10)
|
37
|
+
parser (>= 2.4.0.2, < 3.0)
|
38
|
+
powerpack (~> 0.1)
|
39
|
+
rainbow (>= 2.2.2, < 4.0)
|
40
|
+
ruby-progressbar (~> 1.7)
|
41
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
42
|
+
ruby-progressbar (1.9.0)
|
43
|
+
unicode-display_width (1.3.0)
|
24
44
|
|
25
45
|
PLATFORMS
|
26
46
|
ruby
|
@@ -28,8 +48,10 @@ PLATFORMS
|
|
28
48
|
DEPENDENCIES
|
29
49
|
bundler (~> 1.16)
|
30
50
|
parcel-rails!
|
51
|
+
pry
|
31
52
|
rake (~> 10.0)
|
32
53
|
rspec (~> 3.0)
|
54
|
+
rubocop
|
33
55
|
|
34
56
|
BUNDLED WITH
|
35
57
|
1.16.1
|
data/README.md
CHANGED
@@ -1,8 +1,7 @@
|
|
1
|
-
#
|
1
|
+
# parcel-rails
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
3
|
+
Gem integrates [parcel](https://parceljs.org/) JS module bundler into your Rails application. It is inspired by gems such as
|
4
|
+
[breakfast](https://github.com/devlocker/breakfast) or [webpacker](https://github.com/rails/webpacker).
|
6
5
|
|
7
6
|
## Installation
|
8
7
|
|
@@ -12,17 +11,41 @@ Add this line to your application's Gemfile:
|
|
12
11
|
gem 'parcel-rails'
|
13
12
|
```
|
14
13
|
|
15
|
-
|
14
|
+
## Usage
|
15
|
+
|
16
|
+
Run
|
16
17
|
|
17
|
-
$
|
18
|
+
$ bin/rails g parcel
|
18
19
|
|
19
|
-
|
20
|
+
### Development
|
20
21
|
|
21
|
-
|
22
|
+
Currently `parcel` is not integrated with `rails s` so you need a process manager like [foreman]() to run both `rails s` and `parcel`.
|
22
23
|
|
23
|
-
|
24
|
+
Create `Procfile.dev`, with the following content:
|
25
|
+
|
26
|
+
```
|
27
|
+
web: bin/rails s
|
28
|
+
parcel: bin/rails parcel:serve
|
29
|
+
```
|
30
|
+
|
31
|
+
### Production
|
24
32
|
|
25
|
-
|
33
|
+
Gem hooks up to the assets:precompile and assets:clobber, so no special setup is required.
|
34
|
+
|
35
|
+
|
36
|
+
### Including in view
|
37
|
+
|
38
|
+
Use Rails generic helpers to include assets in your views
|
39
|
+
|
40
|
+
javascript_include_tag '/parcels/application'
|
41
|
+
stylesheet_include_tag '/parcels/application'
|
42
|
+
|
43
|
+
### Configuration
|
44
|
+
|
45
|
+
After running generator, configuration can be found in config/initializers/parcel.rb.
|
46
|
+
|
47
|
+
config.parcel.entry_points = %w(app/javascript/application.js)
|
48
|
+
config.parcel.destination = 'public/parcels'
|
26
49
|
|
27
50
|
## Development
|
28
51
|
|
@@ -32,7 +55,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
32
55
|
|
33
56
|
## Contributing
|
34
57
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
58
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/michaldarda/parcel-rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
59
|
|
37
60
|
## License
|
38
61
|
|
@@ -41,3 +64,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
41
64
|
## Code of Conduct
|
42
65
|
|
43
66
|
Everyone interacting in the Parcel::Rails project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/parcel-rails/blob/master/CODE_OF_CONDUCT.md).
|
67
|
+
|
data/Rakefile
CHANGED
data/bin/console
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
2
3
|
|
3
|
-
require
|
4
|
-
require
|
4
|
+
require 'bundler/setup'
|
5
|
+
require 'parcel/rails'
|
5
6
|
|
6
7
|
# You can add fixtures and/or initialization code here to make experimenting
|
7
8
|
# with your gem easier. You can also use a different console, if you like.
|
@@ -10,5 +11,5 @@ require "parcel/rails"
|
|
10
11
|
# require "pry"
|
11
12
|
# Pry.start
|
12
13
|
|
13
|
-
require
|
14
|
+
require 'irb'
|
14
15
|
IRB.start(__FILE__)
|
@@ -0,0 +1,23 @@
|
|
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
|
+
/node_modules
|
21
|
+
/yarn-error.log
|
22
|
+
|
23
|
+
.byebug_history
|
@@ -0,0 +1,58 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
git_source(:github) do |repo_name|
|
4
|
+
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
|
5
|
+
"https://github.com/#{repo_name}.git"
|
6
|
+
end
|
7
|
+
|
8
|
+
|
9
|
+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
10
|
+
gem 'rails', '~> 5.1.4'
|
11
|
+
# Use sqlite3 as the database for Active Record
|
12
|
+
gem 'sqlite3'
|
13
|
+
# Use Puma as the app server
|
14
|
+
gem 'puma', '~> 3.7'
|
15
|
+
# Use SCSS for stylesheets
|
16
|
+
gem 'sass-rails', '~> 5.0'
|
17
|
+
# Use Uglifier as compressor for JavaScript assets
|
18
|
+
gem 'uglifier', '>= 1.3.0'
|
19
|
+
# See https://github.com/rails/execjs#readme for more supported runtimes
|
20
|
+
# gem 'therubyracer', platforms: :ruby
|
21
|
+
|
22
|
+
# Use CoffeeScript for .coffee assets and views
|
23
|
+
gem 'coffee-rails', '~> 4.2'
|
24
|
+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
|
25
|
+
gem 'turbolinks', '~> 5'
|
26
|
+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
27
|
+
gem 'jbuilder', '~> 2.5'
|
28
|
+
# Use Redis adapter to run Action Cable in production
|
29
|
+
# gem 'redis', '~> 3.0'
|
30
|
+
# Use ActiveModel has_secure_password
|
31
|
+
# gem 'bcrypt', '~> 3.1.7'
|
32
|
+
|
33
|
+
# Use Capistrano for deployment
|
34
|
+
# gem 'capistrano-rails', group: :development
|
35
|
+
|
36
|
+
group :development, :test do
|
37
|
+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
38
|
+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
39
|
+
# Adds support for Capybara system testing and selenium driver
|
40
|
+
gem 'capybara', '~> 2.13'
|
41
|
+
gem 'selenium-webdriver'
|
42
|
+
end
|
43
|
+
|
44
|
+
group :development do
|
45
|
+
# Access an IRB console on exception pages or by using <%= 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
|
+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
54
|
+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
55
|
+
|
56
|
+
gem 'parcel-rails', path: '../..'
|
57
|
+
|
58
|
+
gem 'foreman'
|
@@ -0,0 +1,207 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../..
|
3
|
+
specs:
|
4
|
+
parcel-rails (0.9.0.pre)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
actioncable (5.1.4)
|
10
|
+
actionpack (= 5.1.4)
|
11
|
+
nio4r (~> 2.0)
|
12
|
+
websocket-driver (~> 0.6.1)
|
13
|
+
actionmailer (5.1.4)
|
14
|
+
actionpack (= 5.1.4)
|
15
|
+
actionview (= 5.1.4)
|
16
|
+
activejob (= 5.1.4)
|
17
|
+
mail (~> 2.5, >= 2.5.4)
|
18
|
+
rails-dom-testing (~> 2.0)
|
19
|
+
actionpack (5.1.4)
|
20
|
+
actionview (= 5.1.4)
|
21
|
+
activesupport (= 5.1.4)
|
22
|
+
rack (~> 2.0)
|
23
|
+
rack-test (>= 0.6.3)
|
24
|
+
rails-dom-testing (~> 2.0)
|
25
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
26
|
+
actionview (5.1.4)
|
27
|
+
activesupport (= 5.1.4)
|
28
|
+
builder (~> 3.1)
|
29
|
+
erubi (~> 1.4)
|
30
|
+
rails-dom-testing (~> 2.0)
|
31
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
32
|
+
activejob (5.1.4)
|
33
|
+
activesupport (= 5.1.4)
|
34
|
+
globalid (>= 0.3.6)
|
35
|
+
activemodel (5.1.4)
|
36
|
+
activesupport (= 5.1.4)
|
37
|
+
activerecord (5.1.4)
|
38
|
+
activemodel (= 5.1.4)
|
39
|
+
activesupport (= 5.1.4)
|
40
|
+
arel (~> 8.0)
|
41
|
+
activesupport (5.1.4)
|
42
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
43
|
+
i18n (~> 0.7)
|
44
|
+
minitest (~> 5.1)
|
45
|
+
tzinfo (~> 1.1)
|
46
|
+
addressable (2.5.2)
|
47
|
+
public_suffix (>= 2.0.2, < 4.0)
|
48
|
+
arel (8.0.0)
|
49
|
+
bindex (0.5.0)
|
50
|
+
builder (3.2.3)
|
51
|
+
byebug (10.0.0)
|
52
|
+
capybara (2.17.0)
|
53
|
+
addressable
|
54
|
+
mini_mime (>= 0.1.3)
|
55
|
+
nokogiri (>= 1.3.3)
|
56
|
+
rack (>= 1.0.0)
|
57
|
+
rack-test (>= 0.5.4)
|
58
|
+
xpath (>= 2.0, < 4.0)
|
59
|
+
childprocess (0.8.0)
|
60
|
+
ffi (~> 1.0, >= 1.0.11)
|
61
|
+
coffee-rails (4.2.2)
|
62
|
+
coffee-script (>= 2.2.0)
|
63
|
+
railties (>= 4.0.0)
|
64
|
+
coffee-script (2.4.1)
|
65
|
+
coffee-script-source
|
66
|
+
execjs
|
67
|
+
coffee-script-source (1.12.2)
|
68
|
+
concurrent-ruby (1.0.5)
|
69
|
+
crass (1.0.3)
|
70
|
+
dotenv (0.7.0)
|
71
|
+
erubi (1.7.0)
|
72
|
+
execjs (2.7.0)
|
73
|
+
ffi (1.9.21)
|
74
|
+
foreman (0.64.0)
|
75
|
+
dotenv (~> 0.7.0)
|
76
|
+
thor (>= 0.13.6)
|
77
|
+
globalid (0.4.1)
|
78
|
+
activesupport (>= 4.2.0)
|
79
|
+
i18n (0.9.3)
|
80
|
+
concurrent-ruby (~> 1.0)
|
81
|
+
jbuilder (2.7.0)
|
82
|
+
activesupport (>= 4.2.0)
|
83
|
+
multi_json (>= 1.2)
|
84
|
+
listen (3.1.5)
|
85
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
86
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
87
|
+
ruby_dep (~> 1.2)
|
88
|
+
loofah (2.1.1)
|
89
|
+
crass (~> 1.0.2)
|
90
|
+
nokogiri (>= 1.5.9)
|
91
|
+
mail (2.7.0)
|
92
|
+
mini_mime (>= 0.1.1)
|
93
|
+
method_source (0.9.0)
|
94
|
+
mini_mime (1.0.0)
|
95
|
+
mini_portile2 (2.3.0)
|
96
|
+
minitest (5.11.3)
|
97
|
+
multi_json (1.13.1)
|
98
|
+
nio4r (2.2.0)
|
99
|
+
nokogiri (1.8.2)
|
100
|
+
mini_portile2 (~> 2.3.0)
|
101
|
+
public_suffix (3.0.1)
|
102
|
+
puma (3.11.2)
|
103
|
+
rack (2.0.4)
|
104
|
+
rack-test (0.8.2)
|
105
|
+
rack (>= 1.0, < 3)
|
106
|
+
rails (5.1.4)
|
107
|
+
actioncable (= 5.1.4)
|
108
|
+
actionmailer (= 5.1.4)
|
109
|
+
actionpack (= 5.1.4)
|
110
|
+
actionview (= 5.1.4)
|
111
|
+
activejob (= 5.1.4)
|
112
|
+
activemodel (= 5.1.4)
|
113
|
+
activerecord (= 5.1.4)
|
114
|
+
activesupport (= 5.1.4)
|
115
|
+
bundler (>= 1.3.0)
|
116
|
+
railties (= 5.1.4)
|
117
|
+
sprockets-rails (>= 2.0.0)
|
118
|
+
rails-dom-testing (2.0.3)
|
119
|
+
activesupport (>= 4.2.0)
|
120
|
+
nokogiri (>= 1.6)
|
121
|
+
rails-html-sanitizer (1.0.3)
|
122
|
+
loofah (~> 2.0)
|
123
|
+
railties (5.1.4)
|
124
|
+
actionpack (= 5.1.4)
|
125
|
+
activesupport (= 5.1.4)
|
126
|
+
method_source
|
127
|
+
rake (>= 0.8.7)
|
128
|
+
thor (>= 0.18.1, < 2.0)
|
129
|
+
rake (12.3.0)
|
130
|
+
rb-fsevent (0.10.2)
|
131
|
+
rb-inotify (0.9.10)
|
132
|
+
ffi (>= 0.5.0, < 2)
|
133
|
+
ruby_dep (1.5.0)
|
134
|
+
rubyzip (1.2.1)
|
135
|
+
sass (3.5.5)
|
136
|
+
sass-listen (~> 4.0.0)
|
137
|
+
sass-listen (4.0.0)
|
138
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
139
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
140
|
+
sass-rails (5.0.7)
|
141
|
+
railties (>= 4.0.0, < 6)
|
142
|
+
sass (~> 3.1)
|
143
|
+
sprockets (>= 2.8, < 4.0)
|
144
|
+
sprockets-rails (>= 2.0, < 4.0)
|
145
|
+
tilt (>= 1.1, < 3)
|
146
|
+
selenium-webdriver (3.9.0)
|
147
|
+
childprocess (~> 0.5)
|
148
|
+
rubyzip (~> 1.2)
|
149
|
+
spring (2.0.2)
|
150
|
+
activesupport (>= 4.2)
|
151
|
+
spring-watcher-listen (2.0.1)
|
152
|
+
listen (>= 2.7, < 4.0)
|
153
|
+
spring (>= 1.2, < 3.0)
|
154
|
+
sprockets (3.7.1)
|
155
|
+
concurrent-ruby (~> 1.0)
|
156
|
+
rack (> 1, < 3)
|
157
|
+
sprockets-rails (3.2.1)
|
158
|
+
actionpack (>= 4.0)
|
159
|
+
activesupport (>= 4.0)
|
160
|
+
sprockets (>= 3.0.0)
|
161
|
+
sqlite3 (1.3.13)
|
162
|
+
thor (0.20.0)
|
163
|
+
thread_safe (0.3.6)
|
164
|
+
tilt (2.0.8)
|
165
|
+
turbolinks (5.1.0)
|
166
|
+
turbolinks-source (~> 5.1)
|
167
|
+
turbolinks-source (5.1.0)
|
168
|
+
tzinfo (1.2.5)
|
169
|
+
thread_safe (~> 0.1)
|
170
|
+
uglifier (4.1.5)
|
171
|
+
execjs (>= 0.3.0, < 3)
|
172
|
+
web-console (3.5.1)
|
173
|
+
actionview (>= 5.0)
|
174
|
+
activemodel (>= 5.0)
|
175
|
+
bindex (>= 0.4.0)
|
176
|
+
railties (>= 5.0)
|
177
|
+
websocket-driver (0.6.5)
|
178
|
+
websocket-extensions (>= 0.1.0)
|
179
|
+
websocket-extensions (0.1.3)
|
180
|
+
xpath (3.0.0)
|
181
|
+
nokogiri (~> 1.8)
|
182
|
+
|
183
|
+
PLATFORMS
|
184
|
+
ruby
|
185
|
+
|
186
|
+
DEPENDENCIES
|
187
|
+
byebug
|
188
|
+
capybara (~> 2.13)
|
189
|
+
coffee-rails (~> 4.2)
|
190
|
+
foreman
|
191
|
+
jbuilder (~> 2.5)
|
192
|
+
listen (>= 3.0.5, < 3.2)
|
193
|
+
parcel-rails!
|
194
|
+
puma (~> 3.7)
|
195
|
+
rails (~> 5.1.4)
|
196
|
+
sass-rails (~> 5.0)
|
197
|
+
selenium-webdriver
|
198
|
+
spring
|
199
|
+
spring-watcher-listen (~> 2.0.0)
|
200
|
+
sqlite3
|
201
|
+
turbolinks (~> 5)
|
202
|
+
tzinfo-data
|
203
|
+
uglifier (>= 1.3.0)
|
204
|
+
web-console (>= 3.3.0)
|
205
|
+
|
206
|
+
BUNDLED WITH
|
207
|
+
1.16.1
|