introspective_admin 0.0.8 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (105) hide show
  1. checksums.yaml +5 -5
  2. data/.DS_Store +0 -0
  3. data/.ruby-version +1 -0
  4. data/.travis.yml +16 -9
  5. data/CHANGELOG.md +28 -15
  6. data/Gemfile +6 -6
  7. data/Gemfile.lock +264 -247
  8. data/Gemfile.lock.rails4 +256 -0
  9. data/introspective_admin.gemspec +44 -41
  10. data/lib/introspective_admin/base.rb +200 -200
  11. data/lib/introspective_admin/version.rb +3 -3
  12. data/spec/admin/company_admin_spec.rb +72 -72
  13. data/spec/admin/job_admin_spec.rb +61 -61
  14. data/spec/admin/location_admin_spec.rb +66 -66
  15. data/spec/admin/location_beacon_admin_spec.rb +73 -73
  16. data/spec/admin/project__admin_spec.rb +71 -71
  17. data/spec/admin/user_admin_spec.rb +64 -64
  18. data/spec/dummy/README.rdoc +28 -28
  19. data/spec/dummy/Rakefile +6 -6
  20. data/spec/dummy/app/admin/company_admin.rb +4 -4
  21. data/spec/dummy/app/admin/job_admin.rb +4 -4
  22. data/spec/dummy/app/admin/location_admin.rb +4 -4
  23. data/spec/dummy/app/admin/location_beacon_admin.rb +6 -6
  24. data/spec/dummy/app/admin/project_admin.rb +6 -6
  25. data/spec/dummy/app/admin/role_admin.rb +5 -5
  26. data/spec/dummy/app/admin/user_admin.rb +13 -13
  27. data/spec/dummy/app/assets/javascripts/application.js +13 -13
  28. data/spec/dummy/app/assets/stylesheets/application.css +15 -15
  29. data/spec/dummy/app/controllers/application_controller.rb +8 -5
  30. data/spec/dummy/app/helpers/application_helper.rb +3 -2
  31. data/spec/dummy/app/models/abstract_adapter.rb +12 -12
  32. data/spec/dummy/app/models/admin_user.rb +6 -6
  33. data/spec/dummy/app/models/company.rb +12 -12
  34. data/spec/dummy/app/models/job.rb +10 -10
  35. data/spec/dummy/app/models/locatable.rb +6 -6
  36. data/spec/dummy/app/models/location.rb +26 -26
  37. data/spec/dummy/app/models/location_beacon.rb +19 -19
  38. data/spec/dummy/app/models/location_gps.rb +11 -11
  39. data/spec/dummy/app/models/project.rb +20 -20
  40. data/spec/dummy/app/models/project_job.rb +7 -7
  41. data/spec/dummy/app/models/role.rb +25 -25
  42. data/spec/dummy/app/models/team.rb +9 -9
  43. data/spec/dummy/app/models/team_user.rb +13 -13
  44. data/spec/dummy/app/models/user.rb +68 -68
  45. data/spec/dummy/app/models/user_location.rb +28 -28
  46. data/spec/dummy/app/models/user_project_job.rb +16 -16
  47. data/spec/dummy/app/views/layouts/application.html.erb +13 -13
  48. data/spec/dummy/bin/bundle +3 -3
  49. data/spec/dummy/bin/rails +4 -4
  50. data/spec/dummy/bin/rake +4 -4
  51. data/spec/dummy/bin/setup +29 -29
  52. data/spec/dummy/config/application.rb +34 -32
  53. data/spec/dummy/config/boot.rb +5 -5
  54. data/spec/dummy/config/database.yml +22 -22
  55. data/spec/dummy/config/environment.rb +11 -11
  56. data/spec/dummy/config/environments/development.rb +45 -41
  57. data/spec/dummy/config/environments/production.rb +82 -79
  58. data/spec/dummy/config/environments/test.rb +50 -43
  59. data/spec/dummy/config/initializers/active_admin.rb +7 -7
  60. data/spec/dummy/config/initializers/assets.rb +13 -11
  61. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -7
  62. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -3
  63. data/spec/dummy/config/initializers/devise.rb +263 -263
  64. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -4
  65. data/spec/dummy/config/initializers/inflections.rb +16 -16
  66. data/spec/dummy/config/initializers/mime_types.rb +4 -4
  67. data/spec/dummy/config/initializers/session_store.rb +3 -3
  68. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -14
  69. data/spec/dummy/config/locales/devise.en.yml +60 -60
  70. data/spec/dummy/config/locales/en.yml +23 -23
  71. data/spec/dummy/config/routes.rb +9 -9
  72. data/spec/dummy/config/secrets.yml +20 -20
  73. data/spec/dummy/config.ru +4 -4
  74. data/spec/dummy/db/development.sqlite3 +0 -0
  75. data/spec/dummy/db/migrate/20141002205024_devise_create_users.rb +42 -42
  76. data/spec/dummy/db/migrate/20141002211055_devise_create_admin_users.rb +48 -48
  77. data/spec/dummy/db/migrate/20141002211057_create_active_admin_comments.rb +19 -19
  78. data/spec/dummy/db/migrate/20141002220722_add_lockable_to_users.rb +8 -8
  79. data/spec/dummy/db/migrate/20150406213646_create_companies.rb +11 -11
  80. data/spec/dummy/db/migrate/20150414213154_add_user_authentication_token.rb +11 -11
  81. data/spec/dummy/db/migrate/20150415222005_create_roles.rb +12 -12
  82. data/spec/dummy/db/migrate/20150505181635_create_chats.rb +9 -9
  83. data/spec/dummy/db/migrate/20150505181636_create_chat_users.rb +11 -11
  84. data/spec/dummy/db/migrate/20150505181640_create_chat_messages.rb +11 -11
  85. data/spec/dummy/db/migrate/20150507191529_create_chat_message_users.rb +11 -11
  86. data/spec/dummy/db/migrate/20150601200526_create_locations.rb +13 -13
  87. data/spec/dummy/db/migrate/20150601200533_create_locatables.rb +10 -10
  88. data/spec/dummy/db/migrate/20150601212924_create_location_beacons.rb +16 -16
  89. data/spec/dummy/db/migrate/20150601213542_create_location_gps.rb +12 -12
  90. data/spec/dummy/db/migrate/20150609201823_create_user_locations.rb +14 -14
  91. data/spec/dummy/db/migrate/20150617232519_create_projects.rb +10 -10
  92. data/spec/dummy/db/migrate/20150617232521_create_jobs.rb +9 -9
  93. data/spec/dummy/db/migrate/20150617232522_create_project_jobs.rb +11 -11
  94. data/spec/dummy/db/migrate/20150623170133_create_user_project_jobs.rb +12 -12
  95. data/spec/dummy/db/migrate/20150701234929_create_teams.rb +11 -11
  96. data/spec/dummy/db/migrate/20150701234930_create_team_users.rb +11 -11
  97. data/spec/dummy/db/migrate/20150727214950_add_confirmable_to_devise.rb +11 -11
  98. data/spec/dummy/db/migrate/20150820190524_add_user_names.rb +6 -6
  99. data/spec/dummy/db/migrate/20150909225019_add_password_to_project.rb +5 -5
  100. data/spec/dummy/db/schema.rb +264 -264
  101. data/spec/dummy/public/404.html +67 -67
  102. data/spec/dummy/public/422.html +67 -67
  103. data/spec/dummy/public/500.html +66 -66
  104. data/spec/rails_helper.rb +27 -24
  105. metadata +84 -12
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: b9a18513acd371f5dc9deeebf46976c7d1c81ceb
4
- data.tar.gz: 57621ecaac26a7df9b9b7e14d36b1d95a0dfea66
2
+ SHA256:
3
+ metadata.gz: eaaa72c85b8f1ef3bf0b9a7bcf2892315d5565ac2f49ecba009087999912f9c5
4
+ data.tar.gz: e25ad616a7f885317de14aa1fc6a3e6ca2d1149dcba442a6c2420bddab61e4a9
5
5
  SHA512:
6
- metadata.gz: 1ea656420a6f9e6574a5979d92c89540b43ddccc2e02fd6fe55b844cc36bf75f6f5db76c635803f829993c58dc871c4ddf610eea1f25361f0b96b4ae8ed19bb5
7
- data.tar.gz: c757ca3da6dddddbae8ab663a025b376d165aa6d96135ac19180bce29c312b04890d52d23d2539b0e91ec8ce158a3c349e35c9581797bf02552662261c95cde8
6
+ metadata.gz: a3fc83f7c068173ab9d9e4b056cda964f15d6ee4f3f12a0e2ac45713be5581eabee69b75e18784718245677fb64bab38d7a253154480f1b5cc2e0485683e22f0
7
+ data.tar.gz: d8c13a64de1edd96cb2fce3384379d992a096bf8fb05bf6ed7c26535cd702715e0d62744cec0e8ce72276dee57fbd914750cfd2a462e04f11fd63ccae001508e
data/.DS_Store ADDED
Binary file
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.7.3
data/.travis.yml CHANGED
@@ -1,30 +1,37 @@
1
1
  language: ruby
2
+ before_install:
3
+ - gem install bundler -v 1.17.3
2
4
  install: bundle install --jobs=1 --retry=1
3
5
  script:
4
6
  - bundle install
5
7
  - bundle exec rspec
6
8
 
7
9
  rvm:
8
- - 1.9
9
- - 2.0.0
10
- - 2.1
11
- - 2.2
12
- - rbx-2.5.8
13
- - jruby-19mode
10
+ - 2.3.0
11
+ - 2.4.0
12
+ - 2.5.0
13
+ - 2.6.0
14
+ - rbx-3.107
14
15
  - jruby-9.0.4.0
16
+ - jruby-9.2.6.0
15
17
  - ruby-head
16
18
  - jruby-head
17
19
 
18
20
  matrix:
19
21
  allow_failures:
22
+ - rvm: rbx-3.107
23
+ - rvm: jruby-9.0.4.0
24
+ - rvm: jruby-9.2.6.0
20
25
  - rvm: ruby-head
21
26
  - rvm: jruby-head
22
27
 
23
28
  env:
24
29
  matrix:
25
- - RAILS=3.2.22
26
- - RAILS=4.1.13
27
- - RAILS=4.2.4
30
+ - RAILS=4.2.0
31
+ - RAILS=4.2.11
32
+ - RAILS=5.0.0
33
+ - RAILS=5.1.0
34
+ - RAILS=5.2.0
28
35
  - RAILS=master
29
36
  global:
30
37
  - JRUBY_OPTS="-J-Xmx1024m --debug"
data/CHANGELOG.md CHANGED
@@ -1,15 +1,28 @@
1
-
2
-
3
- 0.0.7 6/14/2016
4
- ==============
5
-
6
- Add validation errors to the form.
7
-
8
- 0.0.6 6/14/2016
9
- ==============
10
-
11
- ### Bug Fixes
12
-
13
- Polymorphic associations were not properly using the "xxx_assigns" attribute name
14
- in the form.
15
-
1
+ 0.1.0 8/04/2020
2
+ ===============
3
+
4
+ Rails 6+ support.
5
+
6
+ 0.0.9 3/28/2019
7
+ ==============
8
+
9
+ Add support for ActiveAdmin 1+; Rails 5; and, correspondingly, require ruby >= 2.3
10
+
11
+ 0.0.8 7/12/2016
12
+ ==============
13
+
14
+ Link to belongs_to relationships in index and show pages.
15
+
16
+ 0.0.7 6/14/2016
17
+ ==============
18
+
19
+ Add validation errors to the form.
20
+
21
+ 0.0.6 6/14/2016
22
+ ==============
23
+
24
+ ### Bug Fixes
25
+
26
+ Polymorphic associations were not properly using the "xxx_assigns" attribute name
27
+ in the form.
28
+
data/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
- # A sample Gemfile
2
- source "https://rubygems.org"
3
-
4
- gemspec
5
- gem 'activeadmin', github: 'activeadmin'
6
- gem 'coveralls', require: false
1
+ # A sample Gemfile
2
+ source "https://rubygems.org"
3
+
4
+ gemspec
5
+ gem 'coveralls', require: false
6
+ #gem 'rails-controller-testing', require: true
data/Gemfile.lock CHANGED
@@ -1,247 +1,264 @@
1
- GIT
2
- remote: git://github.com/activeadmin/activeadmin.git
3
- revision: 9021962577c144b34aa74cb70676d04948d0722f
4
- specs:
5
- activeadmin (1.0.0.pre2)
6
- arbre (~> 1.0, >= 1.0.2)
7
- bourbon
8
- coffee-rails
9
- formtastic (~> 3.1)
10
- formtastic_i18n
11
- inherited_resources (~> 1.6)
12
- jquery-rails
13
- jquery-ui-rails
14
- kaminari (~> 0.15)
15
- rails (>= 3.2, < 5.0)
16
- ransack (~> 1.3)
17
- sass-rails
18
-
19
- PATH
20
- remote: .
21
- specs:
22
- introspective_admin (0.0.8)
23
- sass-rails
24
-
25
- GEM
26
- remote: https://rubygems.org/
27
- specs:
28
- actionmailer (4.2.4)
29
- actionpack (= 4.2.4)
30
- actionview (= 4.2.4)
31
- activejob (= 4.2.4)
32
- mail (~> 2.5, >= 2.5.4)
33
- rails-dom-testing (~> 1.0, >= 1.0.5)
34
- actionpack (4.2.4)
35
- actionview (= 4.2.4)
36
- activesupport (= 4.2.4)
37
- rack (~> 1.6)
38
- rack-test (~> 0.6.2)
39
- rails-dom-testing (~> 1.0, >= 1.0.5)
40
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
41
- actionview (4.2.4)
42
- activesupport (= 4.2.4)
43
- builder (~> 3.1)
44
- erubis (~> 2.7.0)
45
- rails-dom-testing (~> 1.0, >= 1.0.5)
46
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
47
- activejob (4.2.4)
48
- activesupport (= 4.2.4)
49
- globalid (>= 0.3.0)
50
- activemodel (4.2.4)
51
- activesupport (= 4.2.4)
52
- builder (~> 3.1)
53
- activerecord (4.2.4)
54
- activemodel (= 4.2.4)
55
- activesupport (= 4.2.4)
56
- arel (~> 6.0)
57
- activesupport (4.2.4)
58
- i18n (~> 0.7)
59
- json (~> 1.7, >= 1.7.7)
60
- minitest (~> 5.1)
61
- thread_safe (~> 0.3, >= 0.3.4)
62
- tzinfo (~> 1.1)
63
- arbre (1.0.3)
64
- activesupport (>= 3.0.0)
65
- arel (6.0.3)
66
- bcrypt (3.1.10)
67
- bourbon (4.2.6)
68
- sass (~> 3.4)
69
- thor (~> 0.19)
70
- builder (3.2.2)
71
- coffee-rails (4.1.0)
72
- coffee-script (>= 2.2.0)
73
- railties (>= 4.0.0, < 5.0)
74
- coffee-script (2.4.1)
75
- coffee-script-source
76
- execjs
77
- coffee-script-source (1.9.1.1)
78
- coveralls (0.8.9)
79
- json (~> 1.8)
80
- rest-client (>= 1.6.8, < 2)
81
- simplecov (~> 0.10.0)
82
- term-ansicolor (~> 1.3)
83
- thor (~> 0.19.1)
84
- tins (~> 1.6.0)
85
- devise (3.5.2)
86
- bcrypt (~> 3.0)
87
- orm_adapter (~> 0.1)
88
- railties (>= 3.2.6, < 5)
89
- responders
90
- thread_safe (~> 0.1)
91
- warden (~> 1.2.3)
92
- devise-async (0.10.1)
93
- devise (~> 3.2)
94
- diff-lcs (1.2.5)
95
- docile (1.1.5)
96
- domain_name (0.5.20160310)
97
- unf (>= 0.0.5, < 1.0.0)
98
- erubis (2.7.0)
99
- execjs (2.6.0)
100
- formtastic (3.1.3)
101
- actionpack (>= 3.2.13)
102
- formtastic_i18n (0.4.1)
103
- globalid (0.3.6)
104
- activesupport (>= 4.1.0)
105
- has_scope (0.6.0)
106
- actionpack (>= 3.2, < 5)
107
- activesupport (>= 3.2, < 5)
108
- http-cookie (1.0.2)
109
- domain_name (~> 0.5)
110
- i18n (0.7.0)
111
- inherited_resources (1.6.0)
112
- actionpack (>= 3.2, < 5)
113
- has_scope (~> 0.6.0.rc)
114
- railties (>= 3.2, < 5)
115
- responders
116
- jquery-rails (4.0.5)
117
- rails-dom-testing (~> 1.0)
118
- railties (>= 4.2.0)
119
- thor (>= 0.14, < 2.0)
120
- jquery-ui-rails (5.0.5)
121
- railties (>= 3.2.16)
122
- json (1.8.3)
123
- kaminari (0.16.3)
124
- actionpack (>= 3.0.0)
125
- activesupport (>= 3.0.0)
126
- loofah (2.0.3)
127
- nokogiri (>= 1.5.9)
128
- machinist (2.0)
129
- mail (2.6.3)
130
- mime-types (>= 1.16, < 3)
131
- mime-types (2.6.2)
132
- mini_portile (0.6.2)
133
- minitest (5.8.2)
134
- netrc (0.11.0)
135
- nokogiri (1.6.6.2)
136
- mini_portile (~> 0.6.0)
137
- orm_adapter (0.5.0)
138
- polyamorous (1.2.0)
139
- activerecord (>= 3.0)
140
- rack (1.6.4)
141
- rack-test (0.6.3)
142
- rack (>= 1.0)
143
- rails (4.2.4)
144
- actionmailer (= 4.2.4)
145
- actionpack (= 4.2.4)
146
- actionview (= 4.2.4)
147
- activejob (= 4.2.4)
148
- activemodel (= 4.2.4)
149
- activerecord (= 4.2.4)
150
- activesupport (= 4.2.4)
151
- bundler (>= 1.3.0, < 2.0)
152
- railties (= 4.2.4)
153
- sprockets-rails
154
- rails-deprecated_sanitizer (1.0.3)
155
- activesupport (>= 4.2.0.alpha)
156
- rails-dom-testing (1.0.7)
157
- activesupport (>= 4.2.0.beta, < 5.0)
158
- nokogiri (~> 1.6.0)
159
- rails-deprecated_sanitizer (>= 1.0.1)
160
- rails-html-sanitizer (1.0.2)
161
- loofah (~> 2.0)
162
- railties (4.2.4)
163
- actionpack (= 4.2.4)
164
- activesupport (= 4.2.4)
165
- rake (>= 0.8.7)
166
- thor (>= 0.18.1, < 2.0)
167
- rake (10.4.2)
168
- ransack (1.7.0)
169
- actionpack (>= 3.0)
170
- activerecord (>= 3.0)
171
- activesupport (>= 3.0)
172
- i18n
173
- polyamorous (~> 1.2)
174
- responders (2.1.0)
175
- railties (>= 4.2.0, < 5)
176
- rest-client (1.8.0)
177
- http-cookie (>= 1.0.2, < 2.0)
178
- mime-types (>= 1.16, < 3.0)
179
- netrc (~> 0.7)
180
- rspec-core (3.3.2)
181
- rspec-support (~> 3.3.0)
182
- rspec-expectations (3.3.1)
183
- diff-lcs (>= 1.2.0, < 2.0)
184
- rspec-support (~> 3.3.0)
185
- rspec-mocks (3.3.2)
186
- diff-lcs (>= 1.2.0, < 2.0)
187
- rspec-support (~> 3.3.0)
188
- rspec-rails (3.3.3)
189
- actionpack (>= 3.0, < 4.3)
190
- activesupport (>= 3.0, < 4.3)
191
- railties (>= 3.0, < 4.3)
192
- rspec-core (~> 3.3.0)
193
- rspec-expectations (~> 3.3.0)
194
- rspec-mocks (~> 3.3.0)
195
- rspec-support (~> 3.3.0)
196
- rspec-support (3.3.0)
197
- rufus-mnemo (1.2.3)
198
- sass (3.4.19)
199
- sass-rails (5.0.4)
200
- railties (>= 4.0.0, < 5.0)
201
- sass (~> 3.1)
202
- sprockets (>= 2.8, < 4.0)
203
- sprockets-rails (>= 2.0, < 4.0)
204
- tilt (>= 1.1, < 3)
205
- simplecov (0.10.0)
206
- docile (~> 1.1.0)
207
- json (~> 1.8)
208
- simplecov-html (~> 0.10.0)
209
- simplecov-html (0.10.0)
210
- sprockets (3.4.0)
211
- rack (> 1, < 3)
212
- sprockets-rails (2.3.3)
213
- actionpack (>= 3.0)
214
- activesupport (>= 3.0)
215
- sprockets (>= 2.8, < 4.0)
216
- sqlite3 (1.3.11)
217
- term-ansicolor (1.3.2)
218
- tins (~> 1.0)
219
- thor (0.19.1)
220
- thread_safe (0.3.5)
221
- tilt (2.0.1)
222
- tins (1.6.0)
223
- tzinfo (1.2.2)
224
- thread_safe (~> 0.1)
225
- unf (0.1.4)
226
- unf_ext
227
- unf_ext (0.0.7.2)
228
- warden (1.2.3)
229
- rack (>= 1.0)
230
-
231
- PLATFORMS
232
- ruby
233
-
234
- DEPENDENCIES
235
- activeadmin!
236
- coveralls
237
- devise
238
- devise-async
239
- introspective_admin!
240
- machinist
241
- rspec-rails (>= 3.0)
242
- rufus-mnemo
243
- simplecov
244
- sqlite3
245
-
246
- BUNDLED WITH
247
- 1.11.2
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ introspective_admin (0.1.0)
5
+ activeadmin
6
+ rails
7
+ sass
8
+ sass-rails
9
+
10
+ GEM
11
+ remote: https://rubygems.org/
12
+ specs:
13
+ actioncable (5.2.2.1)
14
+ actionpack (= 5.2.2.1)
15
+ nio4r (~> 2.0)
16
+ websocket-driver (>= 0.6.1)
17
+ actionmailer (5.2.2.1)
18
+ actionpack (= 5.2.2.1)
19
+ actionview (= 5.2.2.1)
20
+ activejob (= 5.2.2.1)
21
+ mail (~> 2.5, >= 2.5.4)
22
+ rails-dom-testing (~> 2.0)
23
+ actionpack (5.2.2.1)
24
+ actionview (= 5.2.2.1)
25
+ activesupport (= 5.2.2.1)
26
+ rack (~> 2.0)
27
+ rack-test (>= 0.6.3)
28
+ rails-dom-testing (~> 2.0)
29
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
30
+ actionview (5.2.2.1)
31
+ activesupport (= 5.2.2.1)
32
+ builder (~> 3.1)
33
+ erubi (~> 1.4)
34
+ rails-dom-testing (~> 2.0)
35
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
36
+ activeadmin (2.9.0)
37
+ arbre (~> 1.2, >= 1.2.1)
38
+ formtastic (>= 3.1, < 5.0)
39
+ formtastic_i18n (~> 0.4)
40
+ inherited_resources (~> 1.7)
41
+ jquery-rails (~> 4.2)
42
+ kaminari (~> 1.0, >= 1.2.1)
43
+ railties (>= 5.2, < 6.2)
44
+ ransack (~> 2.1, >= 2.1.1)
45
+ activejob (5.2.2.1)
46
+ activesupport (= 5.2.2.1)
47
+ globalid (>= 0.3.6)
48
+ activemodel (5.2.2.1)
49
+ activesupport (= 5.2.2.1)
50
+ activerecord (5.2.2.1)
51
+ activemodel (= 5.2.2.1)
52
+ activesupport (= 5.2.2.1)
53
+ arel (>= 9.0)
54
+ activestorage (5.2.2.1)
55
+ actionpack (= 5.2.2.1)
56
+ activerecord (= 5.2.2.1)
57
+ marcel (~> 0.3.1)
58
+ activesupport (5.2.2.1)
59
+ concurrent-ruby (~> 1.0, >= 1.0.2)
60
+ i18n (>= 0.7, < 2)
61
+ minitest (~> 5.1)
62
+ tzinfo (~> 1.1)
63
+ arbre (1.5.0)
64
+ activesupport (>= 3.0.0, < 7.1)
65
+ ruby2_keywords (>= 0.0.2, < 1.0)
66
+ arel (9.0.0)
67
+ bcrypt (3.1.12)
68
+ builder (3.2.3)
69
+ concurrent-ruby (1.1.5)
70
+ coveralls (0.8.22)
71
+ json (>= 1.8, < 3)
72
+ simplecov (~> 0.16.1)
73
+ term-ansicolor (~> 1.3)
74
+ thor (~> 0.19.4)
75
+ tins (~> 1.6)
76
+ crass (1.0.4)
77
+ devise (4.6.2)
78
+ bcrypt (~> 3.0)
79
+ orm_adapter (~> 0.1)
80
+ railties (>= 4.1.0, < 6.0)
81
+ responders
82
+ warden (~> 1.2.3)
83
+ devise-async (1.0.0)
84
+ activejob (>= 5.0)
85
+ devise (>= 4.0)
86
+ diff-lcs (1.3)
87
+ docile (1.3.1)
88
+ erubi (1.8.0)
89
+ ffi (1.15.5)
90
+ formtastic (4.0.0)
91
+ actionpack (>= 5.2.0)
92
+ formtastic_i18n (0.7.0)
93
+ globalid (0.4.2)
94
+ activesupport (>= 4.2.0)
95
+ has_scope (0.8.0)
96
+ actionpack (>= 5.2)
97
+ activesupport (>= 5.2)
98
+ i18n (1.6.0)
99
+ concurrent-ruby (~> 1.0)
100
+ inherited_resources (1.13.1)
101
+ actionpack (>= 5.2, < 7.1)
102
+ has_scope (~> 0.6)
103
+ railties (>= 5.2, < 7.1)
104
+ responders (>= 2, < 4)
105
+ jquery-rails (4.5.0)
106
+ rails-dom-testing (>= 1, < 3)
107
+ railties (>= 4.2.0)
108
+ thor (>= 0.14, < 2.0)
109
+ json (2.2.0)
110
+ kaminari (1.2.2)
111
+ activesupport (>= 4.1.0)
112
+ kaminari-actionview (= 1.2.2)
113
+ kaminari-activerecord (= 1.2.2)
114
+ kaminari-core (= 1.2.2)
115
+ kaminari-actionview (1.2.2)
116
+ actionview
117
+ kaminari-core (= 1.2.2)
118
+ kaminari-activerecord (1.2.2)
119
+ activerecord
120
+ kaminari-core (= 1.2.2)
121
+ kaminari-core (1.2.2)
122
+ loofah (2.2.3)
123
+ crass (~> 1.0.2)
124
+ nokogiri (>= 1.5.9)
125
+ machinist_redux (3.0.4)
126
+ mail (2.7.1)
127
+ mini_mime (>= 0.1.1)
128
+ marcel (0.3.3)
129
+ mimemagic (~> 0.3.2)
130
+ method_source (0.9.2)
131
+ mimemagic (0.3.10)
132
+ nokogiri (~> 1)
133
+ rake
134
+ mini_mime (1.1.2)
135
+ mini_portile2 (2.4.0)
136
+ minitest (5.11.3)
137
+ nio4r (2.5.8)
138
+ nokogiri (1.10.2)
139
+ mini_portile2 (~> 2.4.0)
140
+ orm_adapter (0.5.0)
141
+ polyamorous (2.3.2)
142
+ activerecord (>= 5.2.1)
143
+ rack (2.0.6)
144
+ rack-test (1.1.0)
145
+ rack (>= 1.0, < 3)
146
+ rails (5.2.2.1)
147
+ actioncable (= 5.2.2.1)
148
+ actionmailer (= 5.2.2.1)
149
+ actionpack (= 5.2.2.1)
150
+ actionview (= 5.2.2.1)
151
+ activejob (= 5.2.2.1)
152
+ activemodel (= 5.2.2.1)
153
+ activerecord (= 5.2.2.1)
154
+ activestorage (= 5.2.2.1)
155
+ activesupport (= 5.2.2.1)
156
+ bundler (>= 1.3.0)
157
+ railties (= 5.2.2.1)
158
+ sprockets-rails (>= 2.0.0)
159
+ rails-controller-testing (1.0.4)
160
+ actionpack (>= 5.0.1.x)
161
+ actionview (>= 5.0.1.x)
162
+ activesupport (>= 5.0.1.x)
163
+ rails-dom-testing (2.0.3)
164
+ activesupport (>= 4.2.0)
165
+ nokogiri (>= 1.6)
166
+ rails-html-sanitizer (1.0.4)
167
+ loofah (~> 2.2, >= 2.2.2)
168
+ railties (5.2.2.1)
169
+ actionpack (= 5.2.2.1)
170
+ activesupport (= 5.2.2.1)
171
+ method_source
172
+ rake (>= 0.8.7)
173
+ thor (>= 0.19.0, < 2.0)
174
+ rake (12.3.2)
175
+ ransack (2.3.2)
176
+ activerecord (>= 5.2.1)
177
+ activesupport (>= 5.2.1)
178
+ i18n
179
+ polyamorous (= 2.3.2)
180
+ rb-fsevent (0.11.1)
181
+ rb-inotify (0.10.1)
182
+ ffi (~> 1.0)
183
+ responders (2.4.1)
184
+ actionpack (>= 4.2.0, < 6.0)
185
+ railties (>= 4.2.0, < 6.0)
186
+ rspec-core (3.8.0)
187
+ rspec-support (~> 3.8.0)
188
+ rspec-expectations (3.8.2)
189
+ diff-lcs (>= 1.2.0, < 2.0)
190
+ rspec-support (~> 3.8.0)
191
+ rspec-mocks (3.8.0)
192
+ diff-lcs (>= 1.2.0, < 2.0)
193
+ rspec-support (~> 3.8.0)
194
+ rspec-rails (3.8.2)
195
+ actionpack (>= 3.0)
196
+ activesupport (>= 3.0)
197
+ railties (>= 3.0)
198
+ rspec-core (~> 3.8.0)
199
+ rspec-expectations (~> 3.8.0)
200
+ rspec-mocks (~> 3.8.0)
201
+ rspec-support (~> 3.8.0)
202
+ rspec-support (3.8.0)
203
+ ruby2_keywords (0.0.5)
204
+ rufus-mnemo (1.2.3)
205
+ sass (3.7.4)
206
+ sass-listen (~> 4.0.0)
207
+ sass-listen (4.0.0)
208
+ rb-fsevent (~> 0.9, >= 0.9.4)
209
+ rb-inotify (~> 0.9, >= 0.9.7)
210
+ sass-rails (6.0.0)
211
+ sassc-rails (~> 2.1, >= 2.1.1)
212
+ sassc (2.4.0)
213
+ ffi (~> 1.9)
214
+ sassc-rails (2.1.2)
215
+ railties (>= 4.0.0)
216
+ sassc (>= 2.0)
217
+ sprockets (> 3.0)
218
+ sprockets-rails
219
+ tilt
220
+ simplecov (0.16.1)
221
+ docile (~> 1.1)
222
+ json (>= 1.8, < 3)
223
+ simplecov-html (~> 0.10.0)
224
+ simplecov-html (0.10.2)
225
+ sprockets (3.7.2)
226
+ concurrent-ruby (~> 1.0)
227
+ rack (> 1, < 3)
228
+ sprockets-rails (3.1.1)
229
+ actionpack (>= 4.0)
230
+ activesupport (>= 4.0)
231
+ sprockets (>= 3.0.0)
232
+ sqlite3 (1.3.13)
233
+ term-ansicolor (1.7.1)
234
+ tins (~> 1.0)
235
+ thor (0.19.4)
236
+ thread_safe (0.3.6)
237
+ tilt (2.0.11)
238
+ tins (1.20.2)
239
+ tzinfo (1.2.5)
240
+ thread_safe (~> 0.1)
241
+ warden (1.2.8)
242
+ rack (>= 2.0.6)
243
+ websocket-driver (0.7.5)
244
+ websocket-extensions (>= 0.1.0)
245
+ websocket-extensions (0.1.5)
246
+
247
+ PLATFORMS
248
+ ruby
249
+
250
+ DEPENDENCIES
251
+ coveralls
252
+ devise
253
+ devise-async
254
+ introspective_admin!
255
+ machinist_redux
256
+ rails-controller-testing
257
+ rspec-rails
258
+ rufus-mnemo
259
+ simplecov
260
+ sprockets-rails
261
+ sqlite3 (~> 1.3.6)
262
+
263
+ BUNDLED WITH
264
+ 2.2.30