orthodox 0.2.3
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.
- checksums.yaml +7 -0
- data/.gitignore +10 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +221 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/dummy/.gitignore +30 -0
- data/dummy/.ruby-version +1 -0
- data/dummy/Gemfile +64 -0
- data/dummy/Gemfile.lock +234 -0
- data/dummy/README.md +24 -0
- data/dummy/Rakefile +6 -0
- data/dummy/app/channels/application_cable/channel.rb +4 -0
- data/dummy/app/channels/application_cable/connection.rb +4 -0
- data/dummy/app/controllers/application_controller.rb +2 -0
- data/dummy/app/controllers/concerns/.keep +0 -0
- data/dummy/app/helpers/application_helper.rb +2 -0
- data/dummy/app/jobs/application_job.rb +2 -0
- data/dummy/app/mailers/application_mailer.rb +4 -0
- data/dummy/app/models/application_record.rb +3 -0
- data/dummy/app/models/concerns/.keep +0 -0
- data/dummy/app/views/layouts/application.html.erb +15 -0
- data/dummy/app/views/layouts/mailer.html.erb +13 -0
- data/dummy/app/views/layouts/mailer.text.erb +1 -0
- data/dummy/bin/bundle +3 -0
- data/dummy/bin/rails +9 -0
- data/dummy/bin/rake +9 -0
- data/dummy/bin/setup +36 -0
- data/dummy/bin/spring +17 -0
- data/dummy/bin/update +31 -0
- data/dummy/bin/yarn +11 -0
- data/dummy/config.ru +5 -0
- data/dummy/config/application.rb +19 -0
- data/dummy/config/boot.rb +4 -0
- data/dummy/config/cable.yml +10 -0
- data/dummy/config/credentials.yml.enc +1 -0
- data/dummy/config/database.yml +25 -0
- data/dummy/config/environment.rb +5 -0
- data/dummy/config/environments/development.rb +61 -0
- data/dummy/config/environments/production.rb +94 -0
- data/dummy/config/environments/test.rb +46 -0
- data/dummy/config/initializers/application_controller_renderer.rb +8 -0
- data/dummy/config/initializers/assets.rb +14 -0
- data/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/dummy/config/initializers/content_security_policy.rb +25 -0
- data/dummy/config/initializers/cookies_serializer.rb +5 -0
- data/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/dummy/config/initializers/inflections.rb +16 -0
- data/dummy/config/initializers/mime_types.rb +4 -0
- data/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/dummy/config/locales/en.yml +33 -0
- data/dummy/config/puma.rb +34 -0
- data/dummy/config/routes.rb +3 -0
- data/dummy/config/spring.rb +6 -0
- data/dummy/config/storage.yml +34 -0
- data/dummy/db/seeds.rb +7 -0
- data/dummy/lib/assets/.keep +0 -0
- data/dummy/lib/tasks/.keep +0 -0
- data/dummy/log/.keep +0 -0
- data/dummy/package.json +5 -0
- data/dummy/public/404.html +67 -0
- data/dummy/public/422.html +67 -0
- data/dummy/public/500.html +66 -0
- data/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/dummy/public/apple-touch-icon.png +0 -0
- data/dummy/public/favicon.ico +0 -0
- data/dummy/public/robots.txt +1 -0
- data/dummy/tmp/.keep +0 -0
- data/lib/generators/coffeescript/USAGE +8 -0
- data/lib/generators/coffeescript/coffeescript_generator.rb +47 -0
- data/lib/generators/coffeescript/templates/coffeescript.coffee.erb +15 -0
- data/lib/generators/controller/USAGE +11 -0
- data/lib/generators/controller/controller_generator.rb +75 -0
- data/lib/generators/controller/templates/controller.rb.erb +75 -0
- data/lib/generators/controller/templates/view.html.slim +5 -0
- data/lib/generators/sass/USAGE +8 -0
- data/lib/generators/sass/sass_generator.rb +46 -0
- data/lib/generators/sass/templates/sass.sass.erb +8 -0
- data/lib/orthodox.rb +5 -0
- data/lib/orthodox/railtie.rb +12 -0
- data/lib/orthodox/version.rb +3 -0
- data/orthodox.gemspec +29 -0
- metadata +205 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 888536ff84cca72ab464d914603a190200e4951c332ed7a566442cafbe8720d4
|
|
4
|
+
data.tar.gz: 60697b52c282149042d9461cb94f1fd8ea5c8a05815c6b4be6643d037af3673e
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 0a88ed34a528bdf91c500633593c5b122a4e9bd2ca455196434c438c982f7065f5472957e5ec82e8f67309fe886ef86e34e1a85bb98dbb1d4886937375c0fc4c
|
|
7
|
+
data.tar.gz: e0316a93fbeb0fc35588b7325603c84cf7bafb72e013e03b3bf8d3d05dbde321675ace326a76136b0290b30cf734986476d104d3c351d5445483a7f304e7d9d4
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2017 Bodacious
|
|
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,221 @@
|
|
|
1
|
+
# Orthodox
|
|
2
|
+
|
|
3
|
+
Replacement Rails generators for Katana apps.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Add this line to your application's Gemfile:
|
|
8
|
+
|
|
9
|
+
```ruby
|
|
10
|
+
gem 'orthodox', github: "katanacode/orthodox"
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
And then execute:
|
|
14
|
+
|
|
15
|
+
$ bundle
|
|
16
|
+
|
|
17
|
+
Or install it yourself as:
|
|
18
|
+
|
|
19
|
+
$ gem install orthodox
|
|
20
|
+
|
|
21
|
+
## Usage
|
|
22
|
+
|
|
23
|
+
### A Coffeescript file:
|
|
24
|
+
|
|
25
|
+
rails g coffeescript users
|
|
26
|
+
|
|
27
|
+
Creates
|
|
28
|
+
|
|
29
|
+
window.users = do ->
|
|
30
|
+
|
|
31
|
+
init = ->
|
|
32
|
+
|
|
33
|
+
return { init }
|
|
34
|
+
|
|
35
|
+
### A Coffeescript file with functions:
|
|
36
|
+
|
|
37
|
+
rails g coffeescript users show_all
|
|
38
|
+
|
|
39
|
+
Creates
|
|
40
|
+
|
|
41
|
+
window.users = do ->
|
|
42
|
+
|
|
43
|
+
init = ->
|
|
44
|
+
|
|
45
|
+
showAll = ->
|
|
46
|
+
|
|
47
|
+
return { init }
|
|
48
|
+
|
|
49
|
+
### A Sass file:
|
|
50
|
+
|
|
51
|
+
rails g sass users
|
|
52
|
+
|
|
53
|
+
Creates
|
|
54
|
+
|
|
55
|
+
.user
|
|
56
|
+
// Define sass here
|
|
57
|
+
|
|
58
|
+
### A Sass file with BEM elements:
|
|
59
|
+
|
|
60
|
+
rails g sass users name avatar
|
|
61
|
+
|
|
62
|
+
Creates
|
|
63
|
+
|
|
64
|
+
.user
|
|
65
|
+
// Define sass here
|
|
66
|
+
|
|
67
|
+
.user-name
|
|
68
|
+
// Define sass here
|
|
69
|
+
|
|
70
|
+
.user-avatar
|
|
71
|
+
// Define sass here
|
|
72
|
+
|
|
73
|
+
### An empty controller:
|
|
74
|
+
|
|
75
|
+
rails g controller users
|
|
76
|
+
|
|
77
|
+
Creates:
|
|
78
|
+
|
|
79
|
+
class Users < ApplicationController
|
|
80
|
+
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
### A controller with prepopulated actions:
|
|
85
|
+
|
|
86
|
+
rails g controller users new create show
|
|
87
|
+
|
|
88
|
+
Creates:
|
|
89
|
+
|
|
90
|
+
class Users < ApplicationController
|
|
91
|
+
|
|
92
|
+
def new
|
|
93
|
+
@user = users_scope.new
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
def create
|
|
97
|
+
@user = users_scope.new(user_params)
|
|
98
|
+
if @user.save
|
|
99
|
+
redirect_to(user_url(@user), notice: "Successfully created user")
|
|
100
|
+
else
|
|
101
|
+
render :new
|
|
102
|
+
end
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
def show
|
|
106
|
+
@user = users_scope.find(params[:id])
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
private
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
def users_scope
|
|
114
|
+
User.all
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
def user_params
|
|
118
|
+
params.require(:user).permit()
|
|
119
|
+
end
|
|
120
|
+
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
### A controller with actions and authentication:
|
|
124
|
+
|
|
125
|
+
rails g controller users new create show --authenticate admin
|
|
126
|
+
|
|
127
|
+
Creates:
|
|
128
|
+
|
|
129
|
+
class Users < ApplicationController
|
|
130
|
+
|
|
131
|
+
before_action :authenticate_admin!
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
def new
|
|
135
|
+
@user = users_scope.new
|
|
136
|
+
end
|
|
137
|
+
|
|
138
|
+
def create
|
|
139
|
+
@user = users_scope.new(user_params)
|
|
140
|
+
if @user.save
|
|
141
|
+
redirect_to(user_url(@user), notice: "Successfully created user")
|
|
142
|
+
else
|
|
143
|
+
render :new
|
|
144
|
+
end
|
|
145
|
+
end
|
|
146
|
+
|
|
147
|
+
def show
|
|
148
|
+
@user = users_scope.find(params[:id])
|
|
149
|
+
end
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
private
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
def users_scope
|
|
158
|
+
User.all
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
def user_params
|
|
162
|
+
params.require(:user).permit()
|
|
163
|
+
end
|
|
164
|
+
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
### A controller with a namespace:
|
|
168
|
+
|
|
169
|
+
rails g controller admins/users new create show --authenticate admin
|
|
170
|
+
|
|
171
|
+
Creates:
|
|
172
|
+
|
|
173
|
+
class Admins::Users < Admins::BaseControler
|
|
174
|
+
|
|
175
|
+
before_action :authenticate_admin!
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
def new
|
|
179
|
+
@user = users_scope.new
|
|
180
|
+
end
|
|
181
|
+
|
|
182
|
+
def create
|
|
183
|
+
@user = users_scope.new(user_params)
|
|
184
|
+
if @user.save
|
|
185
|
+
redirect_to(user_url(@user), notice: "Successfully created user")
|
|
186
|
+
else
|
|
187
|
+
render :new
|
|
188
|
+
end
|
|
189
|
+
end
|
|
190
|
+
|
|
191
|
+
def show
|
|
192
|
+
@user = users_scope.find(params[:id])
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
private
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
def users_scope
|
|
200
|
+
User.all
|
|
201
|
+
end
|
|
202
|
+
|
|
203
|
+
def user_params
|
|
204
|
+
params.require(:user).permit()
|
|
205
|
+
end
|
|
206
|
+
|
|
207
|
+
end
|
|
208
|
+
|
|
209
|
+
## Development
|
|
210
|
+
|
|
211
|
+
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
212
|
+
|
|
213
|
+
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).
|
|
214
|
+
|
|
215
|
+
## Contributing
|
|
216
|
+
|
|
217
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/KatanaCode/orthodox.
|
|
218
|
+
|
|
219
|
+
## License
|
|
220
|
+
|
|
221
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "bundler/setup"
|
|
4
|
+
require "orthodox"
|
|
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
data/dummy/.gitignore
ADDED
|
@@ -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
|
data/dummy/.ruby-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2.6.2
|
data/dummy/Gemfile
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
source 'https://rubygems.org'
|
|
2
|
+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
3
|
+
|
|
4
|
+
ruby '2.6.2'
|
|
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
|
+
gem "orthodox", path: '..'
|
|
37
|
+
|
|
38
|
+
# Reduces boot times through caching; required in config/boot.rb
|
|
39
|
+
gem 'bootsnap', '>= 1.1.0', require: false
|
|
40
|
+
|
|
41
|
+
group :development, :test do
|
|
42
|
+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
|
43
|
+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
group :development do
|
|
47
|
+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
|
48
|
+
gem 'web-console', '>= 3.3.0'
|
|
49
|
+
gem 'listen', '>= 3.0.5', '< 3.2'
|
|
50
|
+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
|
51
|
+
gem 'spring'
|
|
52
|
+
gem 'spring-watcher-listen', '~> 2.0.0'
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
group :test do
|
|
56
|
+
# Adds support for Capybara system testing and selenium driver
|
|
57
|
+
gem 'capybara', '>= 2.15', '< 4.0'
|
|
58
|
+
gem 'selenium-webdriver'
|
|
59
|
+
# Easy installation and use of chromedriver to run system tests with Chrome
|
|
60
|
+
gem 'chromedriver-helper'
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
64
|
+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
data/dummy/Gemfile.lock
ADDED
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: ..
|
|
3
|
+
specs:
|
|
4
|
+
orthodox (0.2.1)
|
|
5
|
+
rails (>= 3.0.0)
|
|
6
|
+
slim-rails
|
|
7
|
+
|
|
8
|
+
GEM
|
|
9
|
+
remote: https://rubygems.org/
|
|
10
|
+
specs:
|
|
11
|
+
actioncable (5.2.2.1)
|
|
12
|
+
actionpack (= 5.2.2.1)
|
|
13
|
+
nio4r (~> 2.0)
|
|
14
|
+
websocket-driver (>= 0.6.1)
|
|
15
|
+
actionmailer (5.2.2.1)
|
|
16
|
+
actionpack (= 5.2.2.1)
|
|
17
|
+
actionview (= 5.2.2.1)
|
|
18
|
+
activejob (= 5.2.2.1)
|
|
19
|
+
mail (~> 2.5, >= 2.5.4)
|
|
20
|
+
rails-dom-testing (~> 2.0)
|
|
21
|
+
actionpack (5.2.2.1)
|
|
22
|
+
actionview (= 5.2.2.1)
|
|
23
|
+
activesupport (= 5.2.2.1)
|
|
24
|
+
rack (~> 2.0)
|
|
25
|
+
rack-test (>= 0.6.3)
|
|
26
|
+
rails-dom-testing (~> 2.0)
|
|
27
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
|
28
|
+
actionview (5.2.2.1)
|
|
29
|
+
activesupport (= 5.2.2.1)
|
|
30
|
+
builder (~> 3.1)
|
|
31
|
+
erubi (~> 1.4)
|
|
32
|
+
rails-dom-testing (~> 2.0)
|
|
33
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
|
34
|
+
activejob (5.2.2.1)
|
|
35
|
+
activesupport (= 5.2.2.1)
|
|
36
|
+
globalid (>= 0.3.6)
|
|
37
|
+
activemodel (5.2.2.1)
|
|
38
|
+
activesupport (= 5.2.2.1)
|
|
39
|
+
activerecord (5.2.2.1)
|
|
40
|
+
activemodel (= 5.2.2.1)
|
|
41
|
+
activesupport (= 5.2.2.1)
|
|
42
|
+
arel (>= 9.0)
|
|
43
|
+
activestorage (5.2.2.1)
|
|
44
|
+
actionpack (= 5.2.2.1)
|
|
45
|
+
activerecord (= 5.2.2.1)
|
|
46
|
+
marcel (~> 0.3.1)
|
|
47
|
+
activesupport (5.2.2.1)
|
|
48
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
49
|
+
i18n (>= 0.7, < 2)
|
|
50
|
+
minitest (~> 5.1)
|
|
51
|
+
tzinfo (~> 1.1)
|
|
52
|
+
addressable (2.5.2)
|
|
53
|
+
public_suffix (>= 2.0.2, < 4.0)
|
|
54
|
+
archive-zip (0.11.0)
|
|
55
|
+
io-like (~> 0.3.0)
|
|
56
|
+
arel (9.0.0)
|
|
57
|
+
bindex (0.5.0)
|
|
58
|
+
bootsnap (1.3.0)
|
|
59
|
+
msgpack (~> 1.0)
|
|
60
|
+
builder (3.2.3)
|
|
61
|
+
byebug (10.0.2)
|
|
62
|
+
capybara (3.3.1)
|
|
63
|
+
addressable
|
|
64
|
+
mini_mime (>= 0.1.3)
|
|
65
|
+
nokogiri (~> 1.8)
|
|
66
|
+
rack (>= 1.6.0)
|
|
67
|
+
rack-test (>= 0.6.3)
|
|
68
|
+
xpath (~> 3.1)
|
|
69
|
+
childprocess (0.9.0)
|
|
70
|
+
ffi (~> 1.0, >= 1.0.11)
|
|
71
|
+
chromedriver-helper (1.2.0)
|
|
72
|
+
archive-zip (~> 0.10)
|
|
73
|
+
nokogiri (~> 1.8)
|
|
74
|
+
coffee-rails (4.2.2)
|
|
75
|
+
coffee-script (>= 2.2.0)
|
|
76
|
+
railties (>= 4.0.0)
|
|
77
|
+
coffee-script (2.4.1)
|
|
78
|
+
coffee-script-source
|
|
79
|
+
execjs
|
|
80
|
+
coffee-script-source (1.12.2)
|
|
81
|
+
concurrent-ruby (1.1.5)
|
|
82
|
+
crass (1.0.4)
|
|
83
|
+
erubi (1.8.0)
|
|
84
|
+
execjs (2.7.0)
|
|
85
|
+
ffi (1.9.25)
|
|
86
|
+
globalid (0.4.2)
|
|
87
|
+
activesupport (>= 4.2.0)
|
|
88
|
+
i18n (1.6.0)
|
|
89
|
+
concurrent-ruby (~> 1.0)
|
|
90
|
+
io-like (0.3.0)
|
|
91
|
+
jbuilder (2.7.0)
|
|
92
|
+
activesupport (>= 4.2.0)
|
|
93
|
+
multi_json (>= 1.2)
|
|
94
|
+
listen (3.1.5)
|
|
95
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
|
96
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
|
97
|
+
ruby_dep (~> 1.2)
|
|
98
|
+
loofah (2.2.3)
|
|
99
|
+
crass (~> 1.0.2)
|
|
100
|
+
nokogiri (>= 1.5.9)
|
|
101
|
+
mail (2.7.1)
|
|
102
|
+
mini_mime (>= 0.1.1)
|
|
103
|
+
marcel (0.3.3)
|
|
104
|
+
mimemagic (~> 0.3.2)
|
|
105
|
+
method_source (0.9.2)
|
|
106
|
+
mimemagic (0.3.3)
|
|
107
|
+
mini_mime (1.0.1)
|
|
108
|
+
mini_portile2 (2.4.0)
|
|
109
|
+
minitest (5.11.3)
|
|
110
|
+
msgpack (1.2.4)
|
|
111
|
+
multi_json (1.13.1)
|
|
112
|
+
nio4r (2.3.1)
|
|
113
|
+
nokogiri (1.10.4)
|
|
114
|
+
mini_portile2 (~> 2.4.0)
|
|
115
|
+
public_suffix (3.0.2)
|
|
116
|
+
puma (3.11.4)
|
|
117
|
+
rack (2.0.6)
|
|
118
|
+
rack-test (1.1.0)
|
|
119
|
+
rack (>= 1.0, < 3)
|
|
120
|
+
rails (5.2.2.1)
|
|
121
|
+
actioncable (= 5.2.2.1)
|
|
122
|
+
actionmailer (= 5.2.2.1)
|
|
123
|
+
actionpack (= 5.2.2.1)
|
|
124
|
+
actionview (= 5.2.2.1)
|
|
125
|
+
activejob (= 5.2.2.1)
|
|
126
|
+
activemodel (= 5.2.2.1)
|
|
127
|
+
activerecord (= 5.2.2.1)
|
|
128
|
+
activestorage (= 5.2.2.1)
|
|
129
|
+
activesupport (= 5.2.2.1)
|
|
130
|
+
bundler (>= 1.3.0)
|
|
131
|
+
railties (= 5.2.2.1)
|
|
132
|
+
sprockets-rails (>= 2.0.0)
|
|
133
|
+
rails-dom-testing (2.0.3)
|
|
134
|
+
activesupport (>= 4.2.0)
|
|
135
|
+
nokogiri (>= 1.6)
|
|
136
|
+
rails-html-sanitizer (1.0.4)
|
|
137
|
+
loofah (~> 2.2, >= 2.2.2)
|
|
138
|
+
railties (5.2.2.1)
|
|
139
|
+
actionpack (= 5.2.2.1)
|
|
140
|
+
activesupport (= 5.2.2.1)
|
|
141
|
+
method_source
|
|
142
|
+
rake (>= 0.8.7)
|
|
143
|
+
thor (>= 0.19.0, < 2.0)
|
|
144
|
+
rake (12.3.2)
|
|
145
|
+
rb-fsevent (0.10.3)
|
|
146
|
+
rb-inotify (0.9.10)
|
|
147
|
+
ffi (>= 0.5.0, < 2)
|
|
148
|
+
ruby_dep (1.5.0)
|
|
149
|
+
rubyzip (1.2.2)
|
|
150
|
+
sass (3.5.6)
|
|
151
|
+
sass-listen (~> 4.0.0)
|
|
152
|
+
sass-listen (4.0.0)
|
|
153
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
|
154
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
|
155
|
+
sass-rails (5.0.7)
|
|
156
|
+
railties (>= 4.0.0, < 6)
|
|
157
|
+
sass (~> 3.1)
|
|
158
|
+
sprockets (>= 2.8, < 4.0)
|
|
159
|
+
sprockets-rails (>= 2.0, < 4.0)
|
|
160
|
+
tilt (>= 1.1, < 3)
|
|
161
|
+
selenium-webdriver (3.13.0)
|
|
162
|
+
childprocess (~> 0.5)
|
|
163
|
+
rubyzip (~> 1.2)
|
|
164
|
+
slim (4.0.1)
|
|
165
|
+
temple (>= 0.7.6, < 0.9)
|
|
166
|
+
tilt (>= 2.0.6, < 2.1)
|
|
167
|
+
slim-rails (3.2.0)
|
|
168
|
+
actionpack (>= 3.1)
|
|
169
|
+
railties (>= 3.1)
|
|
170
|
+
slim (>= 3.0, < 5.0)
|
|
171
|
+
spring (2.0.2)
|
|
172
|
+
activesupport (>= 4.2)
|
|
173
|
+
spring-watcher-listen (2.0.1)
|
|
174
|
+
listen (>= 2.7, < 4.0)
|
|
175
|
+
spring (>= 1.2, < 3.0)
|
|
176
|
+
sprockets (3.7.2)
|
|
177
|
+
concurrent-ruby (~> 1.0)
|
|
178
|
+
rack (> 1, < 3)
|
|
179
|
+
sprockets-rails (3.2.1)
|
|
180
|
+
actionpack (>= 4.0)
|
|
181
|
+
activesupport (>= 4.0)
|
|
182
|
+
sprockets (>= 3.0.0)
|
|
183
|
+
sqlite3 (1.3.13)
|
|
184
|
+
temple (0.8.1)
|
|
185
|
+
thor (0.20.3)
|
|
186
|
+
thread_safe (0.3.6)
|
|
187
|
+
tilt (2.0.8)
|
|
188
|
+
turbolinks (5.1.1)
|
|
189
|
+
turbolinks-source (~> 5.1)
|
|
190
|
+
turbolinks-source (5.1.0)
|
|
191
|
+
tzinfo (1.2.5)
|
|
192
|
+
thread_safe (~> 0.1)
|
|
193
|
+
uglifier (4.1.12)
|
|
194
|
+
execjs (>= 0.3.0, < 3)
|
|
195
|
+
web-console (3.6.2)
|
|
196
|
+
actionview (>= 5.0)
|
|
197
|
+
activemodel (>= 5.0)
|
|
198
|
+
bindex (>= 0.4.0)
|
|
199
|
+
railties (>= 5.0)
|
|
200
|
+
websocket-driver (0.7.0)
|
|
201
|
+
websocket-extensions (>= 0.1.0)
|
|
202
|
+
websocket-extensions (0.1.3)
|
|
203
|
+
xpath (3.1.0)
|
|
204
|
+
nokogiri (~> 1.8)
|
|
205
|
+
|
|
206
|
+
PLATFORMS
|
|
207
|
+
ruby
|
|
208
|
+
|
|
209
|
+
DEPENDENCIES
|
|
210
|
+
bootsnap (>= 1.1.0)
|
|
211
|
+
byebug
|
|
212
|
+
capybara (>= 2.15, < 4.0)
|
|
213
|
+
chromedriver-helper
|
|
214
|
+
coffee-rails (~> 4.2)
|
|
215
|
+
jbuilder (~> 2.5)
|
|
216
|
+
listen (>= 3.0.5, < 3.2)
|
|
217
|
+
orthodox!
|
|
218
|
+
puma (~> 3.11)
|
|
219
|
+
rails (~> 5.2.0)
|
|
220
|
+
sass-rails (~> 5.0)
|
|
221
|
+
selenium-webdriver
|
|
222
|
+
spring
|
|
223
|
+
spring-watcher-listen (~> 2.0.0)
|
|
224
|
+
sqlite3
|
|
225
|
+
turbolinks (~> 5)
|
|
226
|
+
tzinfo-data
|
|
227
|
+
uglifier (>= 1.3.0)
|
|
228
|
+
web-console (>= 3.3.0)
|
|
229
|
+
|
|
230
|
+
RUBY VERSION
|
|
231
|
+
ruby 2.6.2p47
|
|
232
|
+
|
|
233
|
+
BUNDLED WITH
|
|
234
|
+
1.17.2
|