nested_scaffold 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +1 -0
- data/.travis.yml +11 -5
- data/{README.rdoc → README.md} +27 -20
- data/gemfiles/Gemfile-rails.4.2.x +1 -1
- data/gemfiles/{Gemfile-rails.5.0.0.beta3 → Gemfile-rails.5.0.x} +2 -2
- data/gemfiles/Gemfile-rails.5.1.x +7 -0
- data/gemfiles/Gemfile-rails.5.2.x +7 -0
- data/lib/generators/erb/templates/_form.html.erb +4 -0
- data/lib/generators/erb/templates/index.html.erb +1 -1
- data/lib/generators/haml/templates/_form.html.haml +3 -0
- data/lib/generators/haml/templates/index.html.haml +1 -1
- data/lib/generators/nested_scaffold_generator.rb +3 -3
- data/lib/generators/scaffold_controller/templates/controller.rb +2 -2
- data/lib/generators/test_unit/templates/system_test.rb +9 -0
- data/nested_scaffold.gemspec +2 -2
- metadata +9 -8
- data/gemfiles/Gemfile-rails.4.2.x.lock +0 -114
- data/gemfiles/Gemfile-rails.5.0.0.beta3.lock +0 -124
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: f03efb02607b346057eaab7cd02b611cc25a17a13b3fc72be0e5da3d801df9aa
|
4
|
+
data.tar.gz: f30c4f2f3453b91006a3c0659e852c8b4dc5a483bb9f27d5f84af40f580cd83e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9fc1af19fa10636039850f4e0f1ca12a05b33ed332b644af716598ce0e8c98aa828535368c655a029bf25595ebda6aaeeaecd794f077e344154c85e5bd47b19a
|
7
|
+
data.tar.gz: 8189b8282977f0dc9f8e149ede85e467e0ec2497855e520d0569f49fbf9ad892cf84774b63c85921e914dd5fc744d1fd6908a258691e01b4103dcd6ba82f6606
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
@@ -2,9 +2,15 @@ language: ruby
|
|
2
2
|
|
3
3
|
sudo: false
|
4
4
|
|
5
|
-
|
6
|
-
- 2.3.0
|
5
|
+
before_install: gem i bundler -v '<2' --no-document
|
7
6
|
|
8
|
-
|
9
|
-
|
10
|
-
|
7
|
+
matrix:
|
8
|
+
include:
|
9
|
+
- rvm: 2.3.8
|
10
|
+
gemfile: gemfiles/Gemfile-rails.4.2.x
|
11
|
+
- rvm: 2.4.5
|
12
|
+
gemfile: gemfiles/Gemfile-rails.5.0.x
|
13
|
+
- rvm: 2.5.3
|
14
|
+
gemfile: gemfiles/Gemfile-rails.5.1.x
|
15
|
+
- rvm: 2.6.1
|
16
|
+
gemfile: gemfiles/Gemfile-rails.5.2.x
|
data/{README.rdoc → README.md}
RENAMED
@@ -1,57 +1,64 @@
|
|
1
|
-
|
1
|
+
# nested_scaffold
|
2
2
|
|
3
|
-
A scaffold command that generates a set of perfectly working nested resource for Rails 4.2 and 5
|
3
|
+
A scaffold command that generates a set of perfectly working nested resource for Rails 4.2 and 5.
|
4
4
|
|
5
|
-
|
5
|
+
## Features
|
6
6
|
|
7
7
|
* Generates a nested child resource with a single command
|
8
8
|
* Generates a beautifully working bunch of code
|
9
9
|
* Automatically generates the appropriate model associations for ActiveRecord
|
10
10
|
* Haml ready
|
11
11
|
|
12
|
-
|
12
|
+
## Rails versions
|
13
13
|
|
14
|
-
4.2, 5.0
|
14
|
+
4.2, 5.0, 5.1, 5.2
|
15
15
|
|
16
|
-
|
16
|
+
## Install
|
17
17
|
|
18
18
|
Put this line in your Gemfile:
|
19
|
-
gem 'nested_scaffold'
|
20
19
|
|
21
|
-
|
22
|
-
|
20
|
+
```ruby
|
21
|
+
gem 'nested_scaffold'
|
22
|
+
```
|
23
23
|
|
24
|
-
|
24
|
+
Then bundle.
|
25
25
|
|
26
|
-
|
26
|
+
## Usage
|
27
|
+
|
28
|
+
```
|
29
|
+
% rails generate nested_scaffold PARENT_NAME/NAME [field:type field:type] [options]
|
30
|
+
```
|
27
31
|
|
28
32
|
(Expects PARENT model to exist in advance)
|
29
33
|
|
30
|
-
|
34
|
+
## Example
|
31
35
|
|
32
36
|
While "Post" model exists,
|
33
37
|
|
34
|
-
|
38
|
+
```
|
39
|
+
% rails g nested_scaffold post/comment name:string content:text
|
40
|
+
```
|
35
41
|
|
36
42
|
This will create:
|
37
|
-
comment {model, controller, helper, views, tests}
|
38
|
-
nested resource route
|
39
|
-
Post.has_many :comments association
|
40
43
|
|
41
|
-
|
44
|
+
* comment {model, controller, helper, views, tests}
|
45
|
+
* nested resource route
|
46
|
+
* Post.has_many :comments association
|
47
|
+
|
48
|
+
## Options
|
42
49
|
|
43
50
|
Basically same as the original scaffold.
|
44
51
|
|
45
|
-
|
52
|
+
## TODO / known issues
|
46
53
|
|
47
54
|
* namespace (who needs?)
|
48
55
|
* third party orms
|
49
56
|
* fixture replacements
|
50
57
|
|
51
|
-
|
58
|
+
## Contributing to nested_scaffold
|
52
59
|
|
53
60
|
Pull requests are welcome on GitHub at https://github.com/amatsuda/nested_scaffold
|
54
61
|
|
55
|
-
|
62
|
+
## Copyright
|
56
63
|
|
57
64
|
Copyright (c) 2010 Akira Matsuda. The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
@@ -1,4 +1,8 @@
|
|
1
|
+
<% if Rails::VERSION::MAJOR >= 5 && Rails::VERSION::MINOR >= 1 -%>
|
2
|
+
<%%= form_with(model: [@<%= singular_table_name %>.<%= nested_parent_name %>, @<%= singular_table_name %>]) do |f| %>
|
3
|
+
<% else -%>
|
1
4
|
<%%= form_for([@<%= singular_table_name %>.<%= nested_parent_name %>, @<%= singular_table_name %>]) do |f| %>
|
5
|
+
<% end -%>
|
2
6
|
<%% if @<%= singular_table_name %>.errors.any? %>
|
3
7
|
<div id="error_explanation">
|
4
8
|
<h2><%%= pluralize(@<%= singular_table_name %>.errors.count, "error") %> prohibited this <%= singular_table_name %> from being saved:</h2>
|
@@ -17,7 +17,7 @@
|
|
17
17
|
<% end -%>
|
18
18
|
<td><%%= link_to 'Show', [<%= singular_table_name %>.<%= nested_parent_name %>, <%= singular_table_name %>] %></td>
|
19
19
|
<td><%%= link_to 'Edit', edit_<%= nested_parent_name %>_<%= singular_table_name %>_path(<%= singular_table_name %>.<%= nested_parent_name %>, <%= singular_table_name %>) %></td>
|
20
|
-
<td><%%= link_to 'Destroy', [<%= singular_table_name %>.<%= nested_parent_name %>, <%= singular_table_name %>], :confirm
|
20
|
+
<td><%%= link_to 'Destroy', [<%= singular_table_name %>.<%= nested_parent_name %>, <%= singular_table_name %>], method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
21
21
|
</tr>
|
22
22
|
<%% end %>
|
23
23
|
</table>
|
@@ -1,3 +1,6 @@
|
|
1
|
+
-if Rails::VERSION::MAJOR >= 5 && Rails::VERSION::MINOR >= 1
|
2
|
+
= form_with model: [@<%= singular_table_name %>.<%= nested_parent_name %>, @<%= singular_table_name %>] do |f|
|
3
|
+
-else
|
1
4
|
= form_for [@<%= singular_table_name %>.<%= nested_parent_name %>, @<%= singular_table_name %>] do |f|
|
2
5
|
-if @<%= singular_table_name %>.errors.any?
|
3
6
|
#error_explanation
|
@@ -16,7 +16,7 @@
|
|
16
16
|
<% end -%>
|
17
17
|
%td= link_to 'Show', [<%= singular_table_name %>.<%= nested_parent_name %>, <%= singular_table_name %>]
|
18
18
|
%td= link_to 'Edit', edit_<%= nested_parent_name %>_<%= singular_table_name %>_path(<%= singular_table_name %>.<%= nested_parent_name %>, <%= singular_table_name %>)
|
19
|
-
%td= link_to 'Destroy', [<%= singular_table_name %>.<%= nested_parent_name %>, <%= singular_table_name %>], :confirm
|
19
|
+
%td= link_to 'Destroy', [<%= singular_table_name %>.<%= nested_parent_name %>, <%= singular_table_name %>], data: { confirm: 'Are you sure?' }, method: :delete
|
20
20
|
|
21
21
|
%br
|
22
22
|
|
@@ -24,9 +24,9 @@ module NestedScaffold
|
|
24
24
|
# override
|
25
25
|
def add_resource_route
|
26
26
|
return if options[:actions].present?
|
27
|
-
route_config = "resources :#{plural_nested_parent_name} do\n"
|
28
|
-
|
29
|
-
|
27
|
+
route_config = "resources :#{plural_nested_parent_name} do\n" \
|
28
|
+
" resources :#{file_name.pluralize}\n" \
|
29
|
+
"end\n"
|
30
30
|
route route_config
|
31
31
|
|
32
32
|
gsub_file 'config/routes.rb', / *resources :#{plural_nested_parent_name}\n/, ''
|
@@ -1,5 +1,5 @@
|
|
1
1
|
class <%= controller_class_name %>Controller < ApplicationController
|
2
|
-
before_action :set_<%=
|
2
|
+
before_action :set_<%= nested_parent_name %>
|
3
3
|
before_action :set_<%= singular_table_name %>, only: [:show, :edit, :update, :destroy]
|
4
4
|
|
5
5
|
# GET <%= plural_nested_parent_name %>/1/<%= plural_name %>
|
@@ -49,7 +49,7 @@ class <%= controller_class_name %>Controller < ApplicationController
|
|
49
49
|
|
50
50
|
private
|
51
51
|
# Use callbacks to share common setup or constraints between actions.
|
52
|
-
def set_<%=
|
52
|
+
def set_<%= nested_parent_name %>
|
53
53
|
@<%= nested_parent_name %> = <%= orm_class.find(nested_parent_class_name, "params[:#{nested_parent_id}]") %>
|
54
54
|
end
|
55
55
|
|
@@ -0,0 +1,9 @@
|
|
1
|
+
require "application_system_test_case"
|
2
|
+
|
3
|
+
class <%= class_name.pluralize %>Test < ApplicationSystemTestCase
|
4
|
+
# test "visiting the index" do
|
5
|
+
# visit <%= nested_parent_name%>_<%= plural_table_name %>_url
|
6
|
+
#
|
7
|
+
# assert_selector "h1", text: "<%= class_name %>"
|
8
|
+
# end
|
9
|
+
end
|
data/nested_scaffold.gemspec
CHANGED
@@ -4,13 +4,13 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "nested_scaffold"
|
7
|
-
spec.version = '1.
|
7
|
+
spec.version = '1.1.0'
|
8
8
|
spec.authors = ["Akira Matsuda"]
|
9
9
|
spec.email = ["ronnie@dio.jp"]
|
10
10
|
|
11
11
|
spec.summary = 'Nested scaffold generator for Rails'
|
12
12
|
spec.description = 'Nested scaffold generator for Rails'
|
13
|
-
spec.homepage = '
|
13
|
+
spec.homepage = 'https://github.com/amatsuda/nested_scaffold'
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nested_scaffold
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Akira Matsuda
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-02-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -92,12 +92,12 @@ files:
|
|
92
92
|
- ".travis.yml"
|
93
93
|
- Gemfile
|
94
94
|
- LICENSE.txt
|
95
|
-
- README.
|
95
|
+
- README.md
|
96
96
|
- Rakefile
|
97
97
|
- gemfiles/Gemfile-rails.4.2.x
|
98
|
-
- gemfiles/Gemfile-rails.
|
99
|
-
- gemfiles/Gemfile-rails.5.
|
100
|
-
- gemfiles/Gemfile-rails.5.
|
98
|
+
- gemfiles/Gemfile-rails.5.0.x
|
99
|
+
- gemfiles/Gemfile-rails.5.1.x
|
100
|
+
- gemfiles/Gemfile-rails.5.2.x
|
101
101
|
- lib/generators/USAGE
|
102
102
|
- lib/generators/active_record/active_record_generator.rb
|
103
103
|
- lib/generators/base.rb
|
@@ -122,8 +122,9 @@ files:
|
|
122
122
|
- lib/generators/test_unit/model_generator.rb
|
123
123
|
- lib/generators/test_unit/scaffold_generator.rb
|
124
124
|
- lib/generators/test_unit/templates/functional_test.rb
|
125
|
+
- lib/generators/test_unit/templates/system_test.rb
|
125
126
|
- nested_scaffold.gemspec
|
126
|
-
homepage:
|
127
|
+
homepage: https://github.com/amatsuda/nested_scaffold
|
127
128
|
licenses:
|
128
129
|
- MIT
|
129
130
|
metadata: {}
|
@@ -143,7 +144,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
143
144
|
version: '0'
|
144
145
|
requirements: []
|
145
146
|
rubyforge_project:
|
146
|
-
rubygems_version: 2.
|
147
|
+
rubygems_version: 2.7.8
|
147
148
|
signing_key:
|
148
149
|
specification_version: 4
|
149
150
|
summary: Nested scaffold generator for Rails
|
@@ -1,114 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
nested_scaffold (1.0.0)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: https://rubygems.org/
|
8
|
-
specs:
|
9
|
-
actionmailer (4.2.6)
|
10
|
-
actionpack (= 4.2.6)
|
11
|
-
actionview (= 4.2.6)
|
12
|
-
activejob (= 4.2.6)
|
13
|
-
mail (~> 2.5, >= 2.5.4)
|
14
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
15
|
-
actionpack (4.2.6)
|
16
|
-
actionview (= 4.2.6)
|
17
|
-
activesupport (= 4.2.6)
|
18
|
-
rack (~> 1.6)
|
19
|
-
rack-test (~> 0.6.2)
|
20
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
21
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
22
|
-
actionview (4.2.6)
|
23
|
-
activesupport (= 4.2.6)
|
24
|
-
builder (~> 3.1)
|
25
|
-
erubis (~> 2.7.0)
|
26
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
27
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
28
|
-
activejob (4.2.6)
|
29
|
-
activesupport (= 4.2.6)
|
30
|
-
globalid (>= 0.3.0)
|
31
|
-
activemodel (4.2.6)
|
32
|
-
activesupport (= 4.2.6)
|
33
|
-
builder (~> 3.1)
|
34
|
-
activerecord (4.2.6)
|
35
|
-
activemodel (= 4.2.6)
|
36
|
-
activesupport (= 4.2.6)
|
37
|
-
arel (~> 6.0)
|
38
|
-
activesupport (4.2.6)
|
39
|
-
i18n (~> 0.7)
|
40
|
-
json (~> 1.7, >= 1.7.7)
|
41
|
-
minitest (~> 5.1)
|
42
|
-
thread_safe (~> 0.3, >= 0.3.4)
|
43
|
-
tzinfo (~> 1.1)
|
44
|
-
arel (6.0.3)
|
45
|
-
builder (3.2.2)
|
46
|
-
concurrent-ruby (1.0.1)
|
47
|
-
erubis (2.7.0)
|
48
|
-
globalid (0.3.6)
|
49
|
-
activesupport (>= 4.1.0)
|
50
|
-
i18n (0.7.0)
|
51
|
-
json (1.8.3)
|
52
|
-
loofah (2.0.3)
|
53
|
-
nokogiri (>= 1.5.9)
|
54
|
-
mail (2.6.4)
|
55
|
-
mime-types (>= 1.16, < 4)
|
56
|
-
mime-types (3.0)
|
57
|
-
mime-types-data (~> 3.2015)
|
58
|
-
mime-types-data (3.2016.0221)
|
59
|
-
mini_portile2 (2.0.0)
|
60
|
-
minitest (5.8.4)
|
61
|
-
nokogiri (1.6.7.2)
|
62
|
-
mini_portile2 (~> 2.0.0.rc2)
|
63
|
-
rack (1.6.4)
|
64
|
-
rack-test (0.6.3)
|
65
|
-
rack (>= 1.0)
|
66
|
-
rails (4.2.6)
|
67
|
-
actionmailer (= 4.2.6)
|
68
|
-
actionpack (= 4.2.6)
|
69
|
-
actionview (= 4.2.6)
|
70
|
-
activejob (= 4.2.6)
|
71
|
-
activemodel (= 4.2.6)
|
72
|
-
activerecord (= 4.2.6)
|
73
|
-
activesupport (= 4.2.6)
|
74
|
-
bundler (>= 1.3.0, < 2.0)
|
75
|
-
railties (= 4.2.6)
|
76
|
-
sprockets-rails
|
77
|
-
rails-deprecated_sanitizer (1.0.3)
|
78
|
-
activesupport (>= 4.2.0.alpha)
|
79
|
-
rails-dom-testing (1.0.7)
|
80
|
-
activesupport (>= 4.2.0.beta, < 5.0)
|
81
|
-
nokogiri (~> 1.6.0)
|
82
|
-
rails-deprecated_sanitizer (>= 1.0.1)
|
83
|
-
rails-html-sanitizer (1.0.3)
|
84
|
-
loofah (~> 2.0)
|
85
|
-
railties (4.2.6)
|
86
|
-
actionpack (= 4.2.6)
|
87
|
-
activesupport (= 4.2.6)
|
88
|
-
rake (>= 0.8.7)
|
89
|
-
thor (>= 0.18.1, < 2.0)
|
90
|
-
rake (11.1.2)
|
91
|
-
sprockets (3.5.2)
|
92
|
-
concurrent-ruby (~> 1.0)
|
93
|
-
rack (> 1, < 3)
|
94
|
-
sprockets-rails (3.0.4)
|
95
|
-
actionpack (>= 4.0)
|
96
|
-
activesupport (>= 4.0)
|
97
|
-
sprockets (>= 3.0.0)
|
98
|
-
sqlite3 (1.3.11)
|
99
|
-
thor (0.19.1)
|
100
|
-
thread_safe (0.3.5)
|
101
|
-
tzinfo (1.2.2)
|
102
|
-
thread_safe (~> 0.1)
|
103
|
-
|
104
|
-
PLATFORMS
|
105
|
-
ruby
|
106
|
-
|
107
|
-
DEPENDENCIES
|
108
|
-
minitest (~> 5.0)
|
109
|
-
nested_scaffold!
|
110
|
-
rails (~> 4.2.0)
|
111
|
-
sqlite3
|
112
|
-
|
113
|
-
BUNDLED WITH
|
114
|
-
1.11.2
|
@@ -1,124 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
nested_scaffold (1.0.0)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: https://rubygems.org/
|
8
|
-
specs:
|
9
|
-
actioncable (5.0.0.beta3)
|
10
|
-
actionpack (= 5.0.0.beta3)
|
11
|
-
nio4r (~> 1.2)
|
12
|
-
websocket-driver (~> 0.6.1)
|
13
|
-
actionmailer (5.0.0.beta3)
|
14
|
-
actionpack (= 5.0.0.beta3)
|
15
|
-
actionview (= 5.0.0.beta3)
|
16
|
-
activejob (= 5.0.0.beta3)
|
17
|
-
mail (~> 2.5, >= 2.5.4)
|
18
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
19
|
-
actionpack (5.0.0.beta3)
|
20
|
-
actionview (= 5.0.0.beta3)
|
21
|
-
activesupport (= 5.0.0.beta3)
|
22
|
-
rack (~> 2.x)
|
23
|
-
rack-test (~> 0.6.3)
|
24
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
25
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
26
|
-
actionview (5.0.0.beta3)
|
27
|
-
activesupport (= 5.0.0.beta3)
|
28
|
-
builder (~> 3.1)
|
29
|
-
erubis (~> 2.7.0)
|
30
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
31
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
32
|
-
activejob (5.0.0.beta3)
|
33
|
-
activesupport (= 5.0.0.beta3)
|
34
|
-
globalid (>= 0.3.6)
|
35
|
-
activemodel (5.0.0.beta3)
|
36
|
-
activesupport (= 5.0.0.beta3)
|
37
|
-
activerecord (5.0.0.beta3)
|
38
|
-
activemodel (= 5.0.0.beta3)
|
39
|
-
activesupport (= 5.0.0.beta3)
|
40
|
-
arel (~> 7.0)
|
41
|
-
activesupport (5.0.0.beta3)
|
42
|
-
concurrent-ruby (~> 1.0)
|
43
|
-
i18n (~> 0.7)
|
44
|
-
minitest (~> 5.1)
|
45
|
-
tzinfo (~> 1.1)
|
46
|
-
arel (7.0.0)
|
47
|
-
builder (3.2.2)
|
48
|
-
concurrent-ruby (1.0.1)
|
49
|
-
erubis (2.7.0)
|
50
|
-
globalid (0.3.6)
|
51
|
-
activesupport (>= 4.1.0)
|
52
|
-
i18n (0.7.0)
|
53
|
-
json (1.8.3)
|
54
|
-
loofah (2.0.3)
|
55
|
-
nokogiri (>= 1.5.9)
|
56
|
-
mail (2.6.4)
|
57
|
-
mime-types (>= 1.16, < 4)
|
58
|
-
method_source (0.8.2)
|
59
|
-
mime-types (3.0)
|
60
|
-
mime-types-data (~> 3.2015)
|
61
|
-
mime-types-data (3.2016.0221)
|
62
|
-
mini_portile2 (2.0.0)
|
63
|
-
minitest (5.8.4)
|
64
|
-
nio4r (1.2.1)
|
65
|
-
nokogiri (1.6.7.2)
|
66
|
-
mini_portile2 (~> 2.0.0.rc2)
|
67
|
-
rack (2.0.0.alpha)
|
68
|
-
json
|
69
|
-
rack-test (0.6.3)
|
70
|
-
rack (>= 1.0)
|
71
|
-
rails (5.0.0.beta3)
|
72
|
-
actioncable (= 5.0.0.beta3)
|
73
|
-
actionmailer (= 5.0.0.beta3)
|
74
|
-
actionpack (= 5.0.0.beta3)
|
75
|
-
actionview (= 5.0.0.beta3)
|
76
|
-
activejob (= 5.0.0.beta3)
|
77
|
-
activemodel (= 5.0.0.beta3)
|
78
|
-
activerecord (= 5.0.0.beta3)
|
79
|
-
activesupport (= 5.0.0.beta3)
|
80
|
-
bundler (>= 1.3.0, < 2.0)
|
81
|
-
railties (= 5.0.0.beta3)
|
82
|
-
sprockets-rails (>= 2.0.0)
|
83
|
-
rails-deprecated_sanitizer (1.0.3)
|
84
|
-
activesupport (>= 4.2.0.alpha)
|
85
|
-
rails-dom-testing (1.0.7)
|
86
|
-
activesupport (>= 4.2.0.beta, < 5.0)
|
87
|
-
nokogiri (~> 1.6.0)
|
88
|
-
rails-deprecated_sanitizer (>= 1.0.1)
|
89
|
-
rails-html-sanitizer (1.0.3)
|
90
|
-
loofah (~> 2.0)
|
91
|
-
railties (5.0.0.beta3)
|
92
|
-
actionpack (= 5.0.0.beta3)
|
93
|
-
activesupport (= 5.0.0.beta3)
|
94
|
-
method_source
|
95
|
-
rake (>= 0.8.7)
|
96
|
-
thor (>= 0.18.1, < 2.0)
|
97
|
-
rake (11.1.2)
|
98
|
-
sprockets (3.5.2)
|
99
|
-
concurrent-ruby (~> 1.0)
|
100
|
-
rack (> 1, < 3)
|
101
|
-
sprockets-rails (3.0.4)
|
102
|
-
actionpack (>= 4.0)
|
103
|
-
activesupport (>= 4.0)
|
104
|
-
sprockets (>= 3.0.0)
|
105
|
-
sqlite3 (1.3.11)
|
106
|
-
thor (0.19.1)
|
107
|
-
thread_safe (0.3.5)
|
108
|
-
tzinfo (1.2.2)
|
109
|
-
thread_safe (~> 0.1)
|
110
|
-
websocket-driver (0.6.3)
|
111
|
-
websocket-extensions (>= 0.1.0)
|
112
|
-
websocket-extensions (0.1.2)
|
113
|
-
|
114
|
-
PLATFORMS
|
115
|
-
ruby
|
116
|
-
|
117
|
-
DEPENDENCIES
|
118
|
-
minitest (~> 5.0)
|
119
|
-
nested_scaffold!
|
120
|
-
rails (~> 5.0.0.beta3)
|
121
|
-
sqlite3
|
122
|
-
|
123
|
-
BUNDLED WITH
|
124
|
-
1.11.2
|