setting_accessors 0.3.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (99) hide show
  1. checksums.yaml +5 -5
  2. data/.editorconfig +10 -0
  3. data/.rspec +1 -0
  4. data/.rubocop.yml +131 -0
  5. data/.travis.yml +11 -7
  6. data/Appraisals +17 -0
  7. data/CHANGELOG.md +38 -1
  8. data/Gemfile +2 -0
  9. data/README.md +64 -124
  10. data/Rakefile +5 -27
  11. data/bin/console +15 -0
  12. data/bin/setup +10 -0
  13. data/gemfiles/rails_4.1.gemfile +7 -0
  14. data/gemfiles/rails_4.2.gemfile +7 -0
  15. data/gemfiles/rails_4.2.gemfile.lock +162 -0
  16. data/gemfiles/rails_5.0.gemfile +7 -0
  17. data/gemfiles/rails_5.0.gemfile.lock +169 -0
  18. data/gemfiles/rails_5.1.gemfile +7 -0
  19. data/gemfiles/rails_5.1.gemfile.lock +169 -0
  20. data/gemfiles/rails_5.2.gemfile +7 -0
  21. data/gemfiles/rails_5.2.gemfile.lock +177 -0
  22. data/lib/generators/setting_accessors/install_generator.rb +11 -9
  23. data/lib/generators/setting_accessors/templates/model.rb.erb +0 -24
  24. data/lib/setting_accessors.rb +14 -5
  25. data/lib/setting_accessors/accessor_generator.rb +66 -0
  26. data/lib/setting_accessors/converters/base.rb +24 -0
  27. data/lib/setting_accessors/converters/boolean_converter.rb +51 -0
  28. data/lib/setting_accessors/converters/integer_converter.rb +21 -0
  29. data/lib/setting_accessors/converters/polymorphic_converter.rb +11 -0
  30. data/lib/setting_accessors/converters/string_converter.rb +11 -0
  31. data/lib/setting_accessors/helpers.rb +28 -0
  32. data/lib/setting_accessors/integration.rb +83 -97
  33. data/lib/setting_accessors/internal.rb +37 -64
  34. data/lib/setting_accessors/setting_scaffold.rb +147 -214
  35. data/lib/setting_accessors/setting_set.rb +168 -0
  36. data/lib/setting_accessors/version.rb +3 -1
  37. data/lib/tasks/setting_accessors_tasks.rake +2 -0
  38. data/setting_accessors.gemspec +27 -19
  39. metadata +117 -143
  40. data/.codeclimate.yml +0 -66
  41. data/lib/setting_accessors/accessor.rb +0 -189
  42. data/lib/setting_accessors/converter.rb +0 -71
  43. data/lib/setting_accessors/integration_validator.rb +0 -15
  44. data/lib/setting_accessors/validator.rb +0 -144
  45. data/test/dummy/README.rdoc +0 -28
  46. data/test/dummy/Rakefile +0 -6
  47. data/test/dummy/app/assets/images/.keep +0 -0
  48. data/test/dummy/app/assets/javascripts/application.js +0 -13
  49. data/test/dummy/app/assets/stylesheets/application.css +0 -15
  50. data/test/dummy/app/controllers/application_controller.rb +0 -5
  51. data/test/dummy/app/controllers/concerns/.keep +0 -0
  52. data/test/dummy/app/helpers/application_helper.rb +0 -2
  53. data/test/dummy/app/mailers/.keep +0 -0
  54. data/test/dummy/app/models/.keep +0 -0
  55. data/test/dummy/app/models/concerns/.keep +0 -0
  56. data/test/dummy/app/models/post.rb +0 -2
  57. data/test/dummy/app/models/setting.rb +0 -59
  58. data/test/dummy/app/models/user.rb +0 -19
  59. data/test/dummy/app/views/layouts/application.html.erb +0 -14
  60. data/test/dummy/bin/bundle +0 -3
  61. data/test/dummy/bin/rails +0 -4
  62. data/test/dummy/bin/rake +0 -4
  63. data/test/dummy/config.ru +0 -4
  64. data/test/dummy/config/application.rb +0 -25
  65. data/test/dummy/config/boot.rb +0 -5
  66. data/test/dummy/config/database.yml +0 -25
  67. data/test/dummy/config/environment.rb +0 -5
  68. data/test/dummy/config/environments/development.rb +0 -37
  69. data/test/dummy/config/environments/production.rb +0 -83
  70. data/test/dummy/config/environments/test.rb +0 -34
  71. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  72. data/test/dummy/config/initializers/cookies_serializer.rb +0 -3
  73. data/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
  74. data/test/dummy/config/initializers/inflections.rb +0 -16
  75. data/test/dummy/config/initializers/mime_types.rb +0 -4
  76. data/test/dummy/config/initializers/session_store.rb +0 -3
  77. data/test/dummy/config/initializers/setting_accessors.rb +0 -1
  78. data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  79. data/test/dummy/config/locales/en.yml +0 -23
  80. data/test/dummy/config/routes.rb +0 -56
  81. data/test/dummy/config/secrets.yml +0 -22
  82. data/test/dummy/config/settings.yml +0 -23
  83. data/test/dummy/db/migrate/20150102112106_create_users.rb +0 -9
  84. data/test/dummy/db/migrate/20150102115329_create_settings.rb +0 -12
  85. data/test/dummy/db/migrate/20150723114600_create_posts.rb +0 -11
  86. data/test/dummy/db/schema.rb +0 -40
  87. data/test/dummy/db/test.sqlite3 +0 -0
  88. data/test/dummy/lib/assets/.keep +0 -0
  89. data/test/dummy/public/404.html +0 -67
  90. data/test/dummy/public/422.html +0 -67
  91. data/test/dummy/public/500.html +0 -66
  92. data/test/dummy/public/favicon.ico +0 -0
  93. data/test/dummy/test/fixtures/posts.yml +0 -11
  94. data/test/dummy/test/models/post_test.rb +0 -19
  95. data/test/dummy/test/models/setting_test.rb +0 -143
  96. data/test/dummy/test/models/user_test.rb +0 -154
  97. data/test/generators/install_generator_test.rb +0 -15
  98. data/test/setting_accessors_test.rb +0 -4
  99. data/test/test_helper.rb +0 -31
data/Rakefile CHANGED
@@ -1,30 +1,8 @@
1
- require "bundler/gem_tasks"
1
+ # frozen_string_literal: true
2
2
 
3
- begin
4
- require 'bundler/setup'
5
- rescue LoadError
6
- puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
7
- end
3
+ require 'bundler/gem_tasks'
4
+ require 'rspec/core/rake_task'
8
5
 
9
- require 'rdoc/task'
6
+ RSpec::Core::RakeTask.new(:spec)
10
7
 
11
- RDoc::Task.new(:rdoc) do |rdoc|
12
- rdoc.rdoc_dir = 'rdoc'
13
- rdoc.title = 'ArMailerRevised'
14
- rdoc.options << '--line-numbers'
15
- rdoc.rdoc_files.include('README.rdoc')
16
- rdoc.rdoc_files.include('lib/**/*.rb')
17
- end
18
-
19
- Bundler::GemHelper.install_tasks
20
-
21
- require 'rake/testtask'
22
-
23
- Rake::TestTask.new(:test) do |t|
24
- t.libs << 'lib'
25
- t.libs << 'test'
26
- t.pattern = 'test/**/*_test.rb'
27
- t.verbose = false
28
- end
29
-
30
- task default: :test
8
+ task default: :spec
data/bin/console ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require 'bundler/setup'
5
+ require 'setting_accessors'
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ # (If you use this, don't forget to add pry to your Gemfile!)
11
+ # require "pry"
12
+ # Pry.start
13
+
14
+ require 'irb'
15
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env bash
2
+ # frozen_string_literal: true
3
+
4
+ set -euo pipefail
5
+ IFS=$'\n\t'
6
+ set -vx
7
+
8
+ bundle install
9
+
10
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ gem 'rails', '~> 4.1.0'
6
+
7
+ gemspec path: '../'
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 4.2.0"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,162 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ setting_accessors (1.0.0)
5
+ activemodel (>= 4.2, <= 5.2)
6
+ activerecord (>= 4.2, <= 5.2)
7
+ activesupport (>= 4.2, <= 5.2)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actionmailer (4.2.10)
13
+ actionpack (= 4.2.10)
14
+ actionview (= 4.2.10)
15
+ activejob (= 4.2.10)
16
+ mail (~> 2.5, >= 2.5.4)
17
+ rails-dom-testing (~> 1.0, >= 1.0.5)
18
+ actionpack (4.2.10)
19
+ actionview (= 4.2.10)
20
+ activesupport (= 4.2.10)
21
+ rack (~> 1.6)
22
+ rack-test (~> 0.6.2)
23
+ rails-dom-testing (~> 1.0, >= 1.0.5)
24
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
25
+ actionview (4.2.10)
26
+ activesupport (= 4.2.10)
27
+ builder (~> 3.1)
28
+ erubis (~> 2.7.0)
29
+ rails-dom-testing (~> 1.0, >= 1.0.5)
30
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
31
+ activejob (4.2.10)
32
+ activesupport (= 4.2.10)
33
+ globalid (>= 0.3.0)
34
+ activemodel (4.2.10)
35
+ activesupport (= 4.2.10)
36
+ builder (~> 3.1)
37
+ activerecord (4.2.10)
38
+ activemodel (= 4.2.10)
39
+ activesupport (= 4.2.10)
40
+ arel (~> 6.0)
41
+ activesupport (4.2.10)
42
+ i18n (~> 0.7)
43
+ minitest (~> 5.1)
44
+ thread_safe (~> 0.3, >= 0.3.4)
45
+ tzinfo (~> 1.1)
46
+ appraisal (2.2.0)
47
+ bundler
48
+ rake
49
+ thor (>= 0.14.0)
50
+ arel (6.0.4)
51
+ ast (2.4.0)
52
+ builder (3.2.3)
53
+ concurrent-ruby (1.1.3)
54
+ crass (1.0.4)
55
+ diff-lcs (1.3)
56
+ erubis (2.7.0)
57
+ generator_spec (0.9.4)
58
+ activesupport (>= 3.0.0)
59
+ railties (>= 3.0.0)
60
+ globalid (0.4.1)
61
+ activesupport (>= 4.2.0)
62
+ i18n (0.9.5)
63
+ concurrent-ruby (~> 1.0)
64
+ jaro_winkler (1.5.1-x86_64-darwin-17)
65
+ loofah (2.2.3)
66
+ crass (~> 1.0.2)
67
+ nokogiri (>= 1.5.9)
68
+ mail (2.7.1)
69
+ mini_mime (>= 0.1.1)
70
+ mini_mime (1.0.1)
71
+ mini_portile2 (2.3.0)
72
+ minitest (5.11.3)
73
+ nokogiri (1.8.5)
74
+ mini_portile2 (~> 2.3.0)
75
+ parallel (1.12.1)
76
+ parser (2.5.3.0)
77
+ ast (~> 2.4.0)
78
+ powerpack (0.1.2)
79
+ rack (1.6.11)
80
+ rack-test (0.6.3)
81
+ rack (>= 1.0)
82
+ rails (4.2.10)
83
+ actionmailer (= 4.2.10)
84
+ actionpack (= 4.2.10)
85
+ actionview (= 4.2.10)
86
+ activejob (= 4.2.10)
87
+ activemodel (= 4.2.10)
88
+ activerecord (= 4.2.10)
89
+ activesupport (= 4.2.10)
90
+ bundler (>= 1.3.0, < 2.0)
91
+ railties (= 4.2.10)
92
+ sprockets-rails
93
+ rails-deprecated_sanitizer (1.0.3)
94
+ activesupport (>= 4.2.0.alpha)
95
+ rails-dom-testing (1.0.9)
96
+ activesupport (>= 4.2.0, < 5.0)
97
+ nokogiri (~> 1.6)
98
+ rails-deprecated_sanitizer (>= 1.0.1)
99
+ rails-html-sanitizer (1.0.4)
100
+ loofah (~> 2.2, >= 2.2.2)
101
+ railties (4.2.10)
102
+ actionpack (= 4.2.10)
103
+ activesupport (= 4.2.10)
104
+ rake (>= 0.8.7)
105
+ thor (>= 0.18.1, < 2.0)
106
+ rainbow (3.0.0)
107
+ rake (10.5.0)
108
+ rspec (3.8.0)
109
+ rspec-core (~> 3.8.0)
110
+ rspec-expectations (~> 3.8.0)
111
+ rspec-mocks (~> 3.8.0)
112
+ rspec-core (3.8.0)
113
+ rspec-support (~> 3.8.0)
114
+ rspec-expectations (3.8.2)
115
+ diff-lcs (>= 1.2.0, < 2.0)
116
+ rspec-support (~> 3.8.0)
117
+ rspec-mocks (3.8.0)
118
+ diff-lcs (>= 1.2.0, < 2.0)
119
+ rspec-support (~> 3.8.0)
120
+ rspec-support (3.8.0)
121
+ rubocop (0.60.0)
122
+ jaro_winkler (~> 1.5.1)
123
+ parallel (~> 1.10)
124
+ parser (>= 2.5, != 2.5.1.1)
125
+ powerpack (~> 0.1)
126
+ rainbow (>= 2.2.2, < 4.0)
127
+ ruby-progressbar (~> 1.7)
128
+ unicode-display_width (~> 1.4.0)
129
+ ruby-progressbar (1.10.0)
130
+ sprockets (3.7.2)
131
+ concurrent-ruby (~> 1.0)
132
+ rack (> 1, < 3)
133
+ sprockets-rails (3.2.1)
134
+ actionpack (>= 4.0)
135
+ activesupport (>= 4.0)
136
+ sprockets (>= 3.0.0)
137
+ sqlite3 (1.3.13)
138
+ thor (0.20.3)
139
+ thread_safe (0.3.6)
140
+ tzinfo (1.2.5)
141
+ thread_safe (~> 0.1)
142
+ unicode-display_width (1.4.0)
143
+ with_model (2.1.2)
144
+ activerecord (>= 4.2, < 6.0)
145
+
146
+ PLATFORMS
147
+ ruby
148
+
149
+ DEPENDENCIES
150
+ appraisal (~> 2.2)
151
+ bundler (~> 1.6)
152
+ generator_spec (~> 0.9)
153
+ rails (~> 4.2.0)
154
+ rake (~> 10.4)
155
+ rspec (~> 3.8)
156
+ rubocop (~> 0.60)
157
+ setting_accessors!
158
+ sqlite3 (~> 1.3)
159
+ with_model (~> 2.1)
160
+
161
+ BUNDLED WITH
162
+ 1.17.1
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 5.0.0"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,169 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ setting_accessors (1.0.0)
5
+ activemodel (>= 4.2, <= 5.2)
6
+ activerecord (>= 4.2, <= 5.2)
7
+ activesupport (>= 4.2, <= 5.2)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actioncable (5.0.7)
13
+ actionpack (= 5.0.7)
14
+ nio4r (>= 1.2, < 3.0)
15
+ websocket-driver (~> 0.6.1)
16
+ actionmailer (5.0.7)
17
+ actionpack (= 5.0.7)
18
+ actionview (= 5.0.7)
19
+ activejob (= 5.0.7)
20
+ mail (~> 2.5, >= 2.5.4)
21
+ rails-dom-testing (~> 2.0)
22
+ actionpack (5.0.7)
23
+ actionview (= 5.0.7)
24
+ activesupport (= 5.0.7)
25
+ rack (~> 2.0)
26
+ rack-test (~> 0.6.3)
27
+ rails-dom-testing (~> 2.0)
28
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
29
+ actionview (5.0.7)
30
+ activesupport (= 5.0.7)
31
+ builder (~> 3.1)
32
+ erubis (~> 2.7.0)
33
+ rails-dom-testing (~> 2.0)
34
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
35
+ activejob (5.0.7)
36
+ activesupport (= 5.0.7)
37
+ globalid (>= 0.3.6)
38
+ activemodel (5.0.7)
39
+ activesupport (= 5.0.7)
40
+ activerecord (5.0.7)
41
+ activemodel (= 5.0.7)
42
+ activesupport (= 5.0.7)
43
+ arel (~> 7.0)
44
+ activesupport (5.0.7)
45
+ concurrent-ruby (~> 1.0, >= 1.0.2)
46
+ i18n (>= 0.7, < 2)
47
+ minitest (~> 5.1)
48
+ tzinfo (~> 1.1)
49
+ appraisal (2.2.0)
50
+ bundler
51
+ rake
52
+ thor (>= 0.14.0)
53
+ arel (7.1.4)
54
+ ast (2.4.0)
55
+ builder (3.2.3)
56
+ concurrent-ruby (1.1.3)
57
+ crass (1.0.4)
58
+ diff-lcs (1.3)
59
+ erubis (2.7.0)
60
+ generator_spec (0.9.4)
61
+ activesupport (>= 3.0.0)
62
+ railties (>= 3.0.0)
63
+ globalid (0.4.1)
64
+ activesupport (>= 4.2.0)
65
+ i18n (1.0.1)
66
+ concurrent-ruby (~> 1.0)
67
+ jaro_winkler (1.5.1-x86_64-darwin-17)
68
+ loofah (2.2.3)
69
+ crass (~> 1.0.2)
70
+ nokogiri (>= 1.5.9)
71
+ mail (2.7.1)
72
+ mini_mime (>= 0.1.1)
73
+ method_source (0.9.2)
74
+ mini_mime (1.0.1)
75
+ mini_portile2 (2.3.0)
76
+ minitest (5.11.3)
77
+ nio4r (2.3.1)
78
+ nokogiri (1.8.5)
79
+ mini_portile2 (~> 2.3.0)
80
+ parallel (1.12.1)
81
+ parser (2.5.3.0)
82
+ ast (~> 2.4.0)
83
+ powerpack (0.1.2)
84
+ rack (2.0.6)
85
+ rack-test (0.6.3)
86
+ rack (>= 1.0)
87
+ rails (5.0.7)
88
+ actioncable (= 5.0.7)
89
+ actionmailer (= 5.0.7)
90
+ actionpack (= 5.0.7)
91
+ actionview (= 5.0.7)
92
+ activejob (= 5.0.7)
93
+ activemodel (= 5.0.7)
94
+ activerecord (= 5.0.7)
95
+ activesupport (= 5.0.7)
96
+ bundler (>= 1.3.0)
97
+ railties (= 5.0.7)
98
+ sprockets-rails (>= 2.0.0)
99
+ rails-dom-testing (2.0.3)
100
+ activesupport (>= 4.2.0)
101
+ nokogiri (>= 1.6)
102
+ rails-html-sanitizer (1.0.4)
103
+ loofah (~> 2.2, >= 2.2.2)
104
+ railties (5.0.7)
105
+ actionpack (= 5.0.7)
106
+ activesupport (= 5.0.7)
107
+ method_source
108
+ rake (>= 0.8.7)
109
+ thor (>= 0.18.1, < 2.0)
110
+ rainbow (3.0.0)
111
+ rake (10.5.0)
112
+ rspec (3.8.0)
113
+ rspec-core (~> 3.8.0)
114
+ rspec-expectations (~> 3.8.0)
115
+ rspec-mocks (~> 3.8.0)
116
+ rspec-core (3.8.0)
117
+ rspec-support (~> 3.8.0)
118
+ rspec-expectations (3.8.2)
119
+ diff-lcs (>= 1.2.0, < 2.0)
120
+ rspec-support (~> 3.8.0)
121
+ rspec-mocks (3.8.0)
122
+ diff-lcs (>= 1.2.0, < 2.0)
123
+ rspec-support (~> 3.8.0)
124
+ rspec-support (3.8.0)
125
+ rubocop (0.60.0)
126
+ jaro_winkler (~> 1.5.1)
127
+ parallel (~> 1.10)
128
+ parser (>= 2.5, != 2.5.1.1)
129
+ powerpack (~> 0.1)
130
+ rainbow (>= 2.2.2, < 4.0)
131
+ ruby-progressbar (~> 1.7)
132
+ unicode-display_width (~> 1.4.0)
133
+ ruby-progressbar (1.10.0)
134
+ sprockets (3.7.2)
135
+ concurrent-ruby (~> 1.0)
136
+ rack (> 1, < 3)
137
+ sprockets-rails (3.2.1)
138
+ actionpack (>= 4.0)
139
+ activesupport (>= 4.0)
140
+ sprockets (>= 3.0.0)
141
+ sqlite3 (1.3.13)
142
+ thor (0.20.3)
143
+ thread_safe (0.3.6)
144
+ tzinfo (1.2.5)
145
+ thread_safe (~> 0.1)
146
+ unicode-display_width (1.4.0)
147
+ websocket-driver (0.6.5)
148
+ websocket-extensions (>= 0.1.0)
149
+ websocket-extensions (0.1.3)
150
+ with_model (2.1.2)
151
+ activerecord (>= 4.2, < 6.0)
152
+
153
+ PLATFORMS
154
+ ruby
155
+
156
+ DEPENDENCIES
157
+ appraisal (~> 2.2)
158
+ bundler (~> 1.6)
159
+ generator_spec (~> 0.9)
160
+ rails (~> 5.0.0)
161
+ rake (~> 10.4)
162
+ rspec (~> 3.8)
163
+ rubocop (~> 0.60)
164
+ setting_accessors!
165
+ sqlite3 (~> 1.3)
166
+ with_model (~> 2.1)
167
+
168
+ BUNDLED WITH
169
+ 1.17.1
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 5.1.0"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,169 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ setting_accessors (1.0.0)
5
+ activemodel (>= 4.2, <= 5.2)
6
+ activerecord (>= 4.2, <= 5.2)
7
+ activesupport (>= 4.2, <= 5.2)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actioncable (5.1.6)
13
+ actionpack (= 5.1.6)
14
+ nio4r (~> 2.0)
15
+ websocket-driver (~> 0.6.1)
16
+ actionmailer (5.1.6)
17
+ actionpack (= 5.1.6)
18
+ actionview (= 5.1.6)
19
+ activejob (= 5.1.6)
20
+ mail (~> 2.5, >= 2.5.4)
21
+ rails-dom-testing (~> 2.0)
22
+ actionpack (5.1.6)
23
+ actionview (= 5.1.6)
24
+ activesupport (= 5.1.6)
25
+ rack (~> 2.0)
26
+ rack-test (>= 0.6.3)
27
+ rails-dom-testing (~> 2.0)
28
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
29
+ actionview (5.1.6)
30
+ activesupport (= 5.1.6)
31
+ builder (~> 3.1)
32
+ erubi (~> 1.4)
33
+ rails-dom-testing (~> 2.0)
34
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
35
+ activejob (5.1.6)
36
+ activesupport (= 5.1.6)
37
+ globalid (>= 0.3.6)
38
+ activemodel (5.1.6)
39
+ activesupport (= 5.1.6)
40
+ activerecord (5.1.6)
41
+ activemodel (= 5.1.6)
42
+ activesupport (= 5.1.6)
43
+ arel (~> 8.0)
44
+ activesupport (5.1.6)
45
+ concurrent-ruby (~> 1.0, >= 1.0.2)
46
+ i18n (>= 0.7, < 2)
47
+ minitest (~> 5.1)
48
+ tzinfo (~> 1.1)
49
+ appraisal (2.2.0)
50
+ bundler
51
+ rake
52
+ thor (>= 0.14.0)
53
+ arel (8.0.0)
54
+ ast (2.4.0)
55
+ builder (3.2.3)
56
+ concurrent-ruby (1.1.3)
57
+ crass (1.0.4)
58
+ diff-lcs (1.3)
59
+ erubi (1.7.1)
60
+ generator_spec (0.9.4)
61
+ activesupport (>= 3.0.0)
62
+ railties (>= 3.0.0)
63
+ globalid (0.4.1)
64
+ activesupport (>= 4.2.0)
65
+ i18n (1.1.1)
66
+ concurrent-ruby (~> 1.0)
67
+ jaro_winkler (1.5.1)
68
+ loofah (2.2.3)
69
+ crass (~> 1.0.2)
70
+ nokogiri (>= 1.5.9)
71
+ mail (2.7.1)
72
+ mini_mime (>= 0.1.1)
73
+ method_source (0.9.2)
74
+ mini_mime (1.0.1)
75
+ mini_portile2 (2.3.0)
76
+ minitest (5.11.3)
77
+ nio4r (2.3.1)
78
+ nokogiri (1.8.5)
79
+ mini_portile2 (~> 2.3.0)
80
+ parallel (1.12.1)
81
+ parser (2.5.3.0)
82
+ ast (~> 2.4.0)
83
+ powerpack (0.1.2)
84
+ rack (2.0.6)
85
+ rack-test (1.1.0)
86
+ rack (>= 1.0, < 3)
87
+ rails (5.1.6)
88
+ actioncable (= 5.1.6)
89
+ actionmailer (= 5.1.6)
90
+ actionpack (= 5.1.6)
91
+ actionview (= 5.1.6)
92
+ activejob (= 5.1.6)
93
+ activemodel (= 5.1.6)
94
+ activerecord (= 5.1.6)
95
+ activesupport (= 5.1.6)
96
+ bundler (>= 1.3.0)
97
+ railties (= 5.1.6)
98
+ sprockets-rails (>= 2.0.0)
99
+ rails-dom-testing (2.0.3)
100
+ activesupport (>= 4.2.0)
101
+ nokogiri (>= 1.6)
102
+ rails-html-sanitizer (1.0.4)
103
+ loofah (~> 2.2, >= 2.2.2)
104
+ railties (5.1.6)
105
+ actionpack (= 5.1.6)
106
+ activesupport (= 5.1.6)
107
+ method_source
108
+ rake (>= 0.8.7)
109
+ thor (>= 0.18.1, < 2.0)
110
+ rainbow (3.0.0)
111
+ rake (10.5.0)
112
+ rspec (3.8.0)
113
+ rspec-core (~> 3.8.0)
114
+ rspec-expectations (~> 3.8.0)
115
+ rspec-mocks (~> 3.8.0)
116
+ rspec-core (3.8.0)
117
+ rspec-support (~> 3.8.0)
118
+ rspec-expectations (3.8.2)
119
+ diff-lcs (>= 1.2.0, < 2.0)
120
+ rspec-support (~> 3.8.0)
121
+ rspec-mocks (3.8.0)
122
+ diff-lcs (>= 1.2.0, < 2.0)
123
+ rspec-support (~> 3.8.0)
124
+ rspec-support (3.8.0)
125
+ rubocop (0.60.0)
126
+ jaro_winkler (~> 1.5.1)
127
+ parallel (~> 1.10)
128
+ parser (>= 2.5, != 2.5.1.1)
129
+ powerpack (~> 0.1)
130
+ rainbow (>= 2.2.2, < 4.0)
131
+ ruby-progressbar (~> 1.7)
132
+ unicode-display_width (~> 1.4.0)
133
+ ruby-progressbar (1.10.0)
134
+ sprockets (3.7.2)
135
+ concurrent-ruby (~> 1.0)
136
+ rack (> 1, < 3)
137
+ sprockets-rails (3.2.1)
138
+ actionpack (>= 4.0)
139
+ activesupport (>= 4.0)
140
+ sprockets (>= 3.0.0)
141
+ sqlite3 (1.3.13)
142
+ thor (0.20.3)
143
+ thread_safe (0.3.6)
144
+ tzinfo (1.2.5)
145
+ thread_safe (~> 0.1)
146
+ unicode-display_width (1.4.0)
147
+ websocket-driver (0.6.5)
148
+ websocket-extensions (>= 0.1.0)
149
+ websocket-extensions (0.1.3)
150
+ with_model (2.1.2)
151
+ activerecord (>= 4.2, < 6.0)
152
+
153
+ PLATFORMS
154
+ ruby
155
+
156
+ DEPENDENCIES
157
+ appraisal (~> 2.2)
158
+ bundler (~> 1.6)
159
+ generator_spec (~> 0.9)
160
+ rails (~> 5.1.0)
161
+ rake (~> 10.4)
162
+ rspec (~> 3.8)
163
+ rubocop (~> 0.60)
164
+ setting_accessors!
165
+ sqlite3 (~> 1.3)
166
+ with_model (~> 2.1)
167
+
168
+ BUNDLED WITH
169
+ 1.17.1