administrate-field-nested_has_many 1.1.0 → 1.2.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 (89) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +28 -0
  3. data/.gitignore +3 -0
  4. data/.ruby-version +1 -1
  5. data/Appraisals +9 -0
  6. data/CHANGELOG.md +16 -0
  7. data/Gemfile +2 -0
  8. data/Rakefile +4 -0
  9. data/administrate-field-nested_has_many.gemspec +8 -3
  10. data/app/views/fields/nested_has_many/_show.html.erb +6 -42
  11. data/app/views/fields/nested_has_many/_show_current.html.erb +44 -0
  12. data/app/views/fields/nested_has_many/_show_old.html.erb +36 -0
  13. data/bin/rails +13 -0
  14. data/config/locales/administrate-field-nested_has_many.pt.yml +7 -0
  15. data/config/locales/administrate-field-nested_has_many.ru.yml +7 -0
  16. data/gemfiles/administrate_0.10.gemfile +8 -0
  17. data/gemfiles/administrate_0.10.gemfile.lock +214 -0
  18. data/gemfiles/administrate_master.gemfile +8 -0
  19. data/gemfiles/administrate_master.gemfile.lock +219 -0
  20. data/lib/administrate/field/nested_has_many.rb +13 -8
  21. data/spec/dummy/.gitignore +3 -0
  22. data/spec/dummy/Rakefile +6 -0
  23. data/spec/dummy/app/assets/config/manifest.js +7 -0
  24. data/spec/dummy/app/assets/images/.keep +0 -0
  25. data/spec/dummy/app/assets/javascripts/application.js +14 -0
  26. data/spec/dummy/app/assets/javascripts/channels/.keep +0 -0
  27. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  28. data/spec/dummy/app/controllers/admin/application_controller.rb +21 -0
  29. data/spec/dummy/app/controllers/admin/foo/students_controller.rb +21 -0
  30. data/spec/dummy/app/controllers/admin/schools_controller.rb +21 -0
  31. data/spec/dummy/app/controllers/application_controller.rb +2 -0
  32. data/spec/dummy/app/controllers/concerns/.keep +0 -0
  33. data/spec/dummy/app/dashboards/foo/student_dashboard.rb +51 -0
  34. data/spec/dummy/app/dashboards/school_dashboard.rb +52 -0
  35. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  36. data/spec/dummy/app/mailers/application_mailer.rb +4 -0
  37. data/spec/dummy/app/models/application_record.rb +3 -0
  38. data/spec/dummy/app/models/concerns/.keep +0 -0
  39. data/spec/dummy/app/models/foo/student.rb +3 -0
  40. data/spec/dummy/app/models/school.rb +4 -0
  41. data/spec/dummy/app/views/layouts/application.html.erb +15 -0
  42. data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
  43. data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  44. data/spec/dummy/bin/bundle +3 -0
  45. data/spec/dummy/bin/rails +4 -0
  46. data/spec/dummy/bin/rake +4 -0
  47. data/spec/dummy/bin/setup +36 -0
  48. data/spec/dummy/bin/update +31 -0
  49. data/spec/dummy/bin/yarn +11 -0
  50. data/spec/dummy/config.ru +5 -0
  51. data/spec/dummy/config/application.rb +18 -0
  52. data/spec/dummy/config/boot.rb +5 -0
  53. data/spec/dummy/config/cable.yml +10 -0
  54. data/spec/dummy/config/database.yml +12 -0
  55. data/spec/dummy/config/environment.rb +5 -0
  56. data/spec/dummy/config/environments/development.rb +53 -0
  57. data/spec/dummy/config/environments/test.rb +36 -0
  58. data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
  59. data/spec/dummy/config/initializers/assets.rb +14 -0
  60. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  61. data/spec/dummy/config/initializers/content_security_policy.rb +25 -0
  62. data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
  63. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  64. data/spec/dummy/config/initializers/inflections.rb +16 -0
  65. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  66. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  67. data/spec/dummy/config/locales/en.yml +33 -0
  68. data/spec/dummy/config/puma.rb +34 -0
  69. data/spec/dummy/config/routes.rb +9 -0
  70. data/spec/dummy/config/spring.rb +6 -0
  71. data/spec/dummy/config/storage.yml +34 -0
  72. data/spec/dummy/db/migrate/20180907104642_create_schools.rb +9 -0
  73. data/spec/dummy/db/migrate/20180907104703_create_students.rb +10 -0
  74. data/spec/dummy/db/schema.rb +29 -0
  75. data/spec/dummy/lib/assets/.keep +0 -0
  76. data/spec/dummy/package.json +5 -0
  77. data/spec/dummy/public/404.html +67 -0
  78. data/spec/dummy/public/422.html +67 -0
  79. data/spec/dummy/public/500.html +66 -0
  80. data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
  81. data/spec/dummy/public/apple-touch-icon.png +0 -0
  82. data/spec/dummy/public/favicon.ico +0 -0
  83. data/spec/dummy/storage/.keep +0 -0
  84. data/spec/factories.rb +9 -0
  85. data/spec/features/has_many_spec.rb +41 -0
  86. data/spec/features/landing_spec.rb +10 -0
  87. data/spec/rails_helper.rb +67 -0
  88. data/spec/spec_helper.rb +96 -0
  89. metadata +228 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc4e6f4887d375faa443012dd432fc1dbf93ba0c54cf410cb94f0ed15dff2b1e
4
- data.tar.gz: 46ba0a0fbafbe1dd43e5dc7e2db12a3025a5b92428515cec60fb1c0d67fd24f6
3
+ metadata.gz: f1171aa3d1c51333f3bd0812f7d17754e9c1be5b7f3cce5eaef08b5aa50408ab
4
+ data.tar.gz: dd9640cd1dfc968c82291bf749414b7637dfebf31991e95ae9684534dfb26dcb
5
5
  SHA512:
6
- metadata.gz: 19ca8ea2726af27214269cf1720a261b9fea189f3e6baee3e1dbeb6d884898f0562fe8a626e21f4b9b5d384bc3e7da7060de087302b03e410bb126e0c2c7e305
7
- data.tar.gz: 2fd50695bf285688a893181c6443854a513cea9a492bcc06d29ce2a3506fd99ca0807fdd966b59c48364a189fb758392776baed8ec0fd03e4de4af1af2f193c2
6
+ metadata.gz: c2bfe32cd2c831b376ee516ee28faa127449f5e1c96ec3398f7ecc4e65eb1f0d9cd609d31f863c0b4ebced16d10e8afbc2516623e3b954c4c45a3c5f015387cd
7
+ data.tar.gz: 1aef89b5241f65cc63580687b37465f686f03736b83b0fe5d5cdf7118b37ddead2c36bd969c2cecfd665ba7d702fdb74df655a6d25d1ff906edaee17212d7921
@@ -0,0 +1,28 @@
1
+ ---
2
+ version: 2
3
+ jobs:
4
+ build:
5
+ working_directory: ~/administrate-field-nested_has_many
6
+ docker:
7
+ - image: circleci/ruby:2.6.3
8
+ environment:
9
+ PGHOST: localhost
10
+ PGUSER: administrate-field-nested_has_many
11
+ RAILS_ENV: test
12
+ - image: postgres:11
13
+ environment:
14
+ POSTGRES_USER: administrate-field-nested_has_many
15
+ POSTGRES_DB: administrate-field-nested_has_many_test
16
+ POSTGRES_PASSWORD: ""
17
+ steps:
18
+ - checkout
19
+
20
+ - run: bundle install
21
+ - run: bundle exec appraisal install
22
+
23
+ - run: dockerize -wait tcp://localhost:5432 -timeout 1m
24
+
25
+ - run: bundle exec rake db:setup
26
+
27
+ - run: bundle exec rake
28
+ - run: bundle exec appraisal rake
data/.gitignore CHANGED
@@ -1 +1,4 @@
1
1
  Gemfile.lock
2
+ gemfiles/.bundle
3
+ pkg/
4
+ .rspec
@@ -1 +1 @@
1
- ruby-2.5.3
1
+ ruby-2.6.3
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ appraise "administrate-0.10" do
4
+ gem "administrate", "0.10.0"
5
+ end
6
+
7
+ appraise "administrate-master" do
8
+ gem "administrate", git: "https://github.com/thoughtbot/administrate", branch: "master"
9
+ end
@@ -1,5 +1,21 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.2.0
4
+
5
+ * Add support for namespaced models ([#24][])
6
+ * Add missing accepts nested attributes to School.
7
+ * Explicitly import administrate and field JS/CSS.
8
+ * Add ru locale ([#26][]).
9
+ * Add pt locale ([#25][]).
10
+ * Add Circle CI.
11
+ * Upgrade Ruby to 2.6.3.
12
+ * Add a dummy test app ([#19][]).
13
+
14
+ [#24]: https://github.com/nickcharlton/administrate-field-nested_has_many/pull/24
15
+ [#26]: https://github.com/nickcharlton/administrate-field-nested_has_many/pull/26
16
+ [#25]: https://github.com/nickcharlton/administrate-field-nested_has_many/pull/25
17
+ [#19]: https://github.com/nickcharlton/administrate-field-nested_has_many/pull/19
18
+
3
19
  ## 1.1.0
4
20
 
5
21
  * Add a `.ruby-version` file.
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
1
  source "https://rubygems.org"
2
2
 
3
+ gem "pg"
4
+
3
5
  gemspec
data/Rakefile CHANGED
@@ -6,6 +6,10 @@ end
6
6
 
7
7
  require "bundler/gem_tasks"
8
8
 
9
+ require File.expand_path("../spec/dummy/config/application", __FILE__)
10
+
11
+ Rails.application.load_tasks
12
+
9
13
  ##
10
14
  # Configure the test suite.
11
15
  ##
@@ -2,7 +2,7 @@ $:.push File.expand_path("../lib", __FILE__)
2
2
 
3
3
  Gem::Specification.new do |gem|
4
4
  gem.name = "administrate-field-nested_has_many"
5
- gem.version = "1.1.0"
5
+ gem.version = "1.2.0"
6
6
  gem.authors = ["Nick Charlton", "Grayson Wright"]
7
7
  gem.email = ["nick@nickcharlton.net", "wright.grayson@gmail.com"]
8
8
  gem.homepage = "https://github.com/nickcharlton/" \
@@ -18,7 +18,12 @@ Gem::Specification.new do |gem|
18
18
  gem.add_dependency "administrate", "> 0.8", "< 1"
19
19
  gem.add_dependency "cocoon", "~> 1.2", ">= 1.2.11"
20
20
 
21
- gem.add_development_dependency "rake"
22
- gem.add_development_dependency "rspec"
21
+ gem.add_development_dependency "appraisal"
22
+ gem.add_development_dependency "capybara"
23
+ gem.add_development_dependency "selenium-webdriver"
24
+ gem.add_development_dependency "factory_bot"
23
25
  gem.add_development_dependency "i18n-tasks"
26
+ gem.add_development_dependency "rake"
27
+ gem.add_development_dependency "rspec-rails"
28
+ gem.add_development_dependency "sqlite3"
24
29
  end
@@ -1,45 +1,9 @@
1
- <%#
2
- # HasMany Show Partial
3
-
4
- This partial renders a has_many relationship,
5
- to be displayed on a resource's show page.
6
-
7
- By default, the relationship is rendered
8
- as a table of the first few associated resources.
9
- The columns of the table are taken
10
- from the associated resource class's dashboard.
11
-
12
- ## Local variables:
13
-
14
- - `field`:
15
- An instance of [Administrate::Field::HasMany][1].
16
- Contains methods to help display a table of associated resources.
17
-
18
- [1]: http://www.rubydoc.info/gems/administrate/Administrate/Field/HasMany
1
+ <%
2
+ current = Gem::Version.new(Administrate::VERSION)
3
+ v0_10 = Gem::Version.new("0.10")
19
4
  %>
20
-
21
- <% if field.resources.any? %>
22
- <% order = field.order_from_params(params.fetch(field.name, {})) %>
23
- <% page_number = params.fetch(field.name, {}).fetch(:page, nil) %>
24
- <%= render(
25
- "collection",
26
- collection_presenter: field.associated_collection(order),
27
- collection_field_name: field.name,
28
- page: page,
29
- resources: field.resources(page_number, order),
30
- table_title: field.name,
31
- ) %>
32
-
33
- <% if field.more_than_limit? %>
34
- <span>
35
- <%= t(
36
- 'administrate.fields.has_many.more',
37
- count: field.limit,
38
- total_count: field.data.count,
39
- ) %>
40
- </span>
41
- <% end %>
42
-
5
+ <% if current <= v0_10 %>
6
+ <%= render "fields/nested_has_many/show_old", **local_assigns %>
43
7
  <% else %>
44
- <%= t("administrate.fields.has_many.none", default: "–") %>
8
+ <%= render "fields/nested_has_many/show_current", **local_assigns %>
45
9
  <% end %>
@@ -0,0 +1,44 @@
1
+ <%#
2
+ # HasMany Show Partial
3
+
4
+ This partial renders a has_many relationship,
5
+ to be displayed on a resource's show page.
6
+
7
+ By default, the relationship is rendered
8
+ as a table of the first few associated resources.
9
+ The columns of the table are taken
10
+ from the associated resource class's dashboard.
11
+
12
+ ## Local variables:
13
+
14
+ - `field`:
15
+ An instance of [Administrate::Field::HasMany][1].
16
+ Contains methods to help display a table of associated resources.
17
+
18
+ [1]: http://www.rubydoc.info/gems/administrate/Administrate/Field/HasMany
19
+ %>
20
+
21
+ <% if field.resources.any? %>
22
+ <% order = field.order_from_params(params.fetch(field.name, {})) %>
23
+ <% page_number = params.fetch(field.name, {}).fetch(:page, nil) %>
24
+ <%= render(
25
+ "collection",
26
+ collection_presenter: field.associated_collection(order),
27
+ collection_field_name: field.name,
28
+ page: page,
29
+ resources: field.resources(page_number, order),
30
+ table_title: field.name,
31
+ ) %>
32
+
33
+ <% if field.more_than_limit? %>
34
+ <span>
35
+ <%= t(
36
+ 'administrate.fields.has_many.more',
37
+ count: field.limit,
38
+ total_count: field.data.count,
39
+ ) %>
40
+ </span>
41
+ <% end %>
42
+ <% else %>
43
+ <%= t("administrate.fields.has_many.none", default: "–") %>
44
+ <% end %>
@@ -0,0 +1,36 @@
1
+ <%#
2
+ # HasMany Show Partial
3
+ This partial renders a has_many relationship,
4
+ to be displayed on a resource's show page.
5
+ By default, the relationship is rendered
6
+ as a table of the first few associated resources.
7
+ The columns of the table are taken
8
+ from the associated resource class's dashboard.
9
+ ## Local variables:
10
+ - `field`:
11
+ An instance of [Administrate::Field::HasMany][1].
12
+ Contains methods to help display a table of associated resources.
13
+ [1]: http://www.rubydoc.info/gems/administrate/Administrate/Field/HasMany
14
+ %>
15
+
16
+ <% if field.resources.any? %>
17
+ <%= render(
18
+ "collection",
19
+ collection_presenter: field.associated_collection,
20
+ resources: field.resources,
21
+ table_title: field.name
22
+ ) %>
23
+
24
+ <% if field.more_than_limit? %>
25
+ <span>
26
+ <%= t(
27
+ 'administrate.fields.has_many.more',
28
+ count: field.limit,
29
+ total_count: field.data.count,
30
+ ) %>
31
+ </span>
32
+ <% end %>
33
+
34
+ <% else %>
35
+ <%= t("administrate.fields.has_many.none", default: "–") %>
36
+ <% end %>
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails gems
3
+ # installed from the root of your application.
4
+
5
+ ENGINE_ROOT = File.expand_path('..', __dir__)
6
+ APP_PATH = File.expand_path('../spec/dummy/config/application', __dir__)
7
+
8
+ # Set up gems listed in the Gemfile.
9
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
10
+ require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
11
+
12
+ require 'rails/all'
13
+ require 'rails/engine/commands'
@@ -0,0 +1,7 @@
1
+ ---
2
+ pt:
3
+ administrate:
4
+ fields:
5
+ nested_has_many:
6
+ add: Adicionar %{resource}
7
+ remove: Remover %{resource}
@@ -0,0 +1,7 @@
1
+ ---
2
+ ru:
3
+ administrate:
4
+ fields:
5
+ nested_has_many:
6
+ add: Добавить %{resource}
7
+ remove: Удалить %{resource}
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "pg"
6
+ gem "administrate", "0.10.0"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,214 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ administrate-field-nested_has_many (1.2.0)
5
+ administrate (> 0.8, < 1)
6
+ cocoon (~> 1.2, >= 1.2.11)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionpack (5.2.1)
12
+ actionview (= 5.2.1)
13
+ activesupport (= 5.2.1)
14
+ rack (~> 2.0)
15
+ rack-test (>= 0.6.3)
16
+ rails-dom-testing (~> 2.0)
17
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
18
+ actionview (5.2.1)
19
+ activesupport (= 5.2.1)
20
+ builder (~> 3.1)
21
+ erubi (~> 1.4)
22
+ rails-dom-testing (~> 2.0)
23
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
24
+ activemodel (5.2.1)
25
+ activesupport (= 5.2.1)
26
+ activerecord (5.2.1)
27
+ activemodel (= 5.2.1)
28
+ activesupport (= 5.2.1)
29
+ arel (>= 9.0)
30
+ activesupport (5.2.1)
31
+ concurrent-ruby (~> 1.0, >= 1.0.2)
32
+ i18n (>= 0.7, < 2)
33
+ minitest (~> 5.1)
34
+ tzinfo (~> 1.1)
35
+ addressable (2.5.2)
36
+ public_suffix (>= 2.0.2, < 4.0)
37
+ administrate (0.10.0)
38
+ actionpack (>= 4.2, < 6.0)
39
+ actionview (>= 4.2, < 6.0)
40
+ activerecord (>= 4.2, < 6.0)
41
+ autoprefixer-rails (>= 6.0)
42
+ datetime_picker_rails (~> 0.0.7)
43
+ jquery-rails (>= 4.0)
44
+ kaminari (>= 1.0)
45
+ momentjs-rails (~> 2.8)
46
+ sass-rails (~> 5.0)
47
+ selectize-rails (~> 0.6)
48
+ appraisal (2.2.0)
49
+ bundler
50
+ rake
51
+ thor (>= 0.14.0)
52
+ arel (9.0.0)
53
+ ast (2.4.0)
54
+ autoprefixer-rails (9.1.4)
55
+ execjs
56
+ builder (3.2.3)
57
+ capybara (3.7.1)
58
+ addressable
59
+ mini_mime (>= 0.1.3)
60
+ nokogiri (~> 1.8)
61
+ rack (>= 1.6.0)
62
+ rack-test (>= 0.6.3)
63
+ xpath (~> 3.1)
64
+ childprocess (3.0.0)
65
+ cocoon (1.2.14)
66
+ concurrent-ruby (1.0.5)
67
+ crass (1.0.4)
68
+ datetime_picker_rails (0.0.7)
69
+ momentjs-rails (>= 2.8.1)
70
+ deepl-rb (2.1.0)
71
+ diff-lcs (1.3)
72
+ easy_translate (0.5.1)
73
+ thread
74
+ thread_safe
75
+ erubi (1.7.1)
76
+ execjs (2.7.0)
77
+ factory_bot (4.10.0)
78
+ activesupport (>= 3.0.0)
79
+ ffi (1.9.25)
80
+ highline (2.0.0)
81
+ i18n (1.1.0)
82
+ concurrent-ruby (~> 1.0)
83
+ i18n-tasks (0.9.23)
84
+ activesupport (>= 4.0.2)
85
+ ast (>= 2.1.0)
86
+ deepl-rb (>= 2.1.0)
87
+ easy_translate (>= 0.5.1)
88
+ erubi
89
+ highline (>= 1.7.3)
90
+ i18n
91
+ parser (>= 2.2.3.0)
92
+ rainbow (>= 2.2.2, < 4.0)
93
+ terminal-table (>= 1.5.1)
94
+ jquery-rails (4.3.3)
95
+ rails-dom-testing (>= 1, < 3)
96
+ railties (>= 4.2.0)
97
+ thor (>= 0.14, < 2.0)
98
+ kaminari (1.1.1)
99
+ activesupport (>= 4.1.0)
100
+ kaminari-actionview (= 1.1.1)
101
+ kaminari-activerecord (= 1.1.1)
102
+ kaminari-core (= 1.1.1)
103
+ kaminari-actionview (1.1.1)
104
+ actionview
105
+ kaminari-core (= 1.1.1)
106
+ kaminari-activerecord (1.1.1)
107
+ activerecord
108
+ kaminari-core (= 1.1.1)
109
+ kaminari-core (1.1.1)
110
+ loofah (2.2.2)
111
+ crass (~> 1.0.2)
112
+ nokogiri (>= 1.5.9)
113
+ method_source (0.9.0)
114
+ mini_mime (1.0.1)
115
+ mini_portile2 (2.3.0)
116
+ minitest (5.11.3)
117
+ momentjs-rails (2.20.1)
118
+ railties (>= 3.1)
119
+ nokogiri (1.8.4)
120
+ mini_portile2 (~> 2.3.0)
121
+ parser (2.5.1.2)
122
+ ast (~> 2.4.0)
123
+ pg (1.1.4)
124
+ public_suffix (3.0.3)
125
+ rack (2.0.5)
126
+ rack-test (1.1.0)
127
+ rack (>= 1.0, < 3)
128
+ rails-dom-testing (2.0.3)
129
+ activesupport (>= 4.2.0)
130
+ nokogiri (>= 1.6)
131
+ rails-html-sanitizer (1.0.4)
132
+ loofah (~> 2.2, >= 2.2.2)
133
+ railties (5.2.1)
134
+ actionpack (= 5.2.1)
135
+ activesupport (= 5.2.1)
136
+ method_source
137
+ rake (>= 0.8.7)
138
+ thor (>= 0.19.0, < 2.0)
139
+ rainbow (3.0.0)
140
+ rake (12.3.1)
141
+ rb-fsevent (0.10.3)
142
+ rb-inotify (0.9.10)
143
+ ffi (>= 0.5.0, < 2)
144
+ rspec-core (3.8.0)
145
+ rspec-support (~> 3.8.0)
146
+ rspec-expectations (3.8.1)
147
+ diff-lcs (>= 1.2.0, < 2.0)
148
+ rspec-support (~> 3.8.0)
149
+ rspec-mocks (3.8.0)
150
+ diff-lcs (>= 1.2.0, < 2.0)
151
+ rspec-support (~> 3.8.0)
152
+ rspec-rails (3.8.0)
153
+ actionpack (>= 3.0)
154
+ activesupport (>= 3.0)
155
+ railties (>= 3.0)
156
+ rspec-core (~> 3.8.0)
157
+ rspec-expectations (~> 3.8.0)
158
+ rspec-mocks (~> 3.8.0)
159
+ rspec-support (~> 3.8.0)
160
+ rspec-support (3.8.0)
161
+ rubyzip (2.2.0)
162
+ sass (3.5.7)
163
+ sass-listen (~> 4.0.0)
164
+ sass-listen (4.0.0)
165
+ rb-fsevent (~> 0.9, >= 0.9.4)
166
+ rb-inotify (~> 0.9, >= 0.9.7)
167
+ sass-rails (5.0.7)
168
+ railties (>= 4.0.0, < 6)
169
+ sass (~> 3.1)
170
+ sprockets (>= 2.8, < 4.0)
171
+ sprockets-rails (>= 2.0, < 4.0)
172
+ tilt (>= 1.1, < 3)
173
+ selectize-rails (0.12.5)
174
+ selenium-webdriver (3.142.7)
175
+ childprocess (>= 0.5, < 4.0)
176
+ rubyzip (>= 1.2.2)
177
+ sprockets (3.7.2)
178
+ concurrent-ruby (~> 1.0)
179
+ rack (> 1, < 3)
180
+ sprockets-rails (3.2.1)
181
+ actionpack (>= 4.0)
182
+ activesupport (>= 4.0)
183
+ sprockets (>= 3.0.0)
184
+ sqlite3 (1.3.13)
185
+ terminal-table (1.8.0)
186
+ unicode-display_width (~> 1.1, >= 1.1.1)
187
+ thor (0.20.0)
188
+ thread (0.2.2)
189
+ thread_safe (0.3.6)
190
+ tilt (2.0.8)
191
+ tzinfo (1.2.5)
192
+ thread_safe (~> 0.1)
193
+ unicode-display_width (1.4.0)
194
+ xpath (3.1.0)
195
+ nokogiri (~> 1.8)
196
+
197
+ PLATFORMS
198
+ ruby
199
+
200
+ DEPENDENCIES
201
+ administrate (= 0.10.0)
202
+ administrate-field-nested_has_many!
203
+ appraisal
204
+ capybara
205
+ factory_bot
206
+ i18n-tasks
207
+ pg
208
+ rake
209
+ rspec-rails
210
+ selenium-webdriver
211
+ sqlite3
212
+
213
+ BUNDLED WITH
214
+ 1.17.3