simple_form_materialize 1.1.0 → 1.1.1
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 +4 -4
- data/.circleci/config.yml +207 -20
- data/.codeclimate.yml +41 -14
- data/.gitignore +2 -6
- data/.rubocop.yml +1 -1
- data/.yardopts +1 -0
- data/CHANGELOG.md +11 -3
- data/Gemfile +2 -4
- data/README.md +5 -7
- data/Rakefile +0 -9
- data/_config.yml +1 -1
- data/lib/simple_form_materialize/version.rb +1 -1
- data/simple_form_materialize.gemspec +1 -1
- data/test/test_helper.rb +12 -15
- metadata +3 -5
- data/.ruby-version +0 -1
- data/Gemfile.lock +0 -153
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: be7bc1f180418108b782013325a17daec8b0bb0f
|
4
|
+
data.tar.gz: a9d3ef270d7f3fdf53181565d04cee21aab7c6af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 14a83e4109cc011de6670b66f6669a8908185b6b03333aa352e5c98d14c1facb2dc9d851a4001d726b46fa6fa35f864801acdb99daa2f558942bfe225517bc80
|
7
|
+
data.tar.gz: 148584f211e6a861961571eacbda1944736ba36320fae402ff286739ec636aa52e0d544a158e8ca89f39f46664ff639938687897e8a8f79f80b4afae64dbc797
|
data/.circleci/config.yml
CHANGED
@@ -1,14 +1,13 @@
|
|
1
|
-
# Ruby CircleCI 2.0 configuration file
|
2
|
-
#
|
3
|
-
# Check https://circleci.com/docs/2.0/language-ruby/ for more details
|
4
|
-
#
|
5
1
|
version: 2
|
2
|
+
|
6
3
|
jobs:
|
7
|
-
|
4
|
+
ruby_2_5_0:
|
8
5
|
docker:
|
9
|
-
|
10
|
-
- image: circleci/ruby:2.4.1
|
6
|
+
- image: circleci/ruby:2.5.0
|
11
7
|
environment:
|
8
|
+
BUNDLE_JOBS: 3
|
9
|
+
BUNDLE_RETRY: 3
|
10
|
+
BUNDLE_PATH: vendor/bundle
|
12
11
|
RAILS_ENV: test
|
13
12
|
|
14
13
|
working_directory: ~/simple_form_materialize
|
@@ -19,36 +18,224 @@ jobs:
|
|
19
18
|
# Download and cache dependencies
|
20
19
|
- restore_cache:
|
21
20
|
keys:
|
22
|
-
|
21
|
+
- rails-bundle-v1-{{ checksum "Gemfile" }}
|
22
|
+
- rails-bundle-v1-
|
23
23
|
|
24
24
|
- run:
|
25
|
-
name: Install
|
26
|
-
command:
|
27
|
-
bundle install --jobs=4 --retry=3 --path vendor/bundle
|
25
|
+
name: Bundle Install
|
26
|
+
command: bundle check || bundle install
|
28
27
|
|
29
28
|
- save_cache:
|
29
|
+
key: rails-bundle-v1-{{ checksum "Gemfile" }}
|
30
30
|
paths:
|
31
|
-
-
|
32
|
-
key: v1-dependencies-{{ checksum "Gemfile.lock" }}
|
31
|
+
- vendor/bundle
|
33
32
|
|
34
33
|
# run tests!
|
35
34
|
- run:
|
36
35
|
name: Run Tests
|
37
|
-
command:
|
38
|
-
|
36
|
+
command: bundle exec rake test
|
37
|
+
when: always
|
38
|
+
|
39
|
+
# collect reports
|
40
|
+
- store_artifacts:
|
41
|
+
path: coverage
|
42
|
+
destination: coverage
|
43
|
+
|
44
|
+
- store_test_results:
|
45
|
+
path: test/reports
|
46
|
+
|
47
|
+
ruby_2_4_3:
|
48
|
+
docker:
|
49
|
+
- image: circleci/ruby:2.4.3
|
50
|
+
environment:
|
51
|
+
BUNDLE_JOBS: 3
|
52
|
+
BUNDLE_RETRY: 3
|
53
|
+
BUNDLE_PATH: vendor/bundle
|
54
|
+
RAILS_ENV: test
|
55
|
+
|
56
|
+
working_directory: ~/simple_form_materialize
|
57
|
+
|
58
|
+
steps:
|
59
|
+
- checkout
|
60
|
+
|
61
|
+
# Download and cache dependencies
|
62
|
+
- restore_cache:
|
63
|
+
keys:
|
64
|
+
- rails-bundle-v1-{{ checksum "Gemfile" }}
|
65
|
+
- rails-bundle-v1-
|
39
66
|
|
40
67
|
- run:
|
41
|
-
name: Install
|
68
|
+
name: Bundle Install
|
69
|
+
command: bundle check || bundle install
|
70
|
+
|
71
|
+
- save_cache:
|
72
|
+
key: rails-bundle-v1-{{ checksum "Gemfile" }}
|
73
|
+
paths:
|
74
|
+
- vendor/bundle
|
75
|
+
|
76
|
+
# run tests!
|
77
|
+
- run:
|
78
|
+
name: Run Tests
|
79
|
+
command: bundle exec rake test
|
80
|
+
when: always
|
81
|
+
|
82
|
+
# collect reports
|
83
|
+
- store_artifacts:
|
84
|
+
path: coverage
|
85
|
+
destination: coverage
|
86
|
+
|
87
|
+
- store_test_results:
|
88
|
+
path: test/reports
|
89
|
+
|
90
|
+
ruby_2_3_6:
|
91
|
+
docker:
|
92
|
+
- image: circleci/ruby:2.3.6
|
93
|
+
environment:
|
94
|
+
BUNDLE_JOBS: 3
|
95
|
+
BUNDLE_RETRY: 3
|
96
|
+
BUNDLE_PATH: vendor/bundle
|
97
|
+
RAILS_ENV: test
|
98
|
+
|
99
|
+
working_directory: ~/simple_form_materialize
|
100
|
+
|
101
|
+
steps:
|
102
|
+
- checkout
|
103
|
+
|
104
|
+
# Download and cache dependencies
|
105
|
+
- restore_cache:
|
106
|
+
keys:
|
107
|
+
- rails-bundle-v1-{{ checksum "Gemfile" }}
|
108
|
+
- rails-bundle-v1-
|
109
|
+
|
110
|
+
- run:
|
111
|
+
name: Bundle Install
|
112
|
+
command: bundle check || bundle install
|
113
|
+
|
114
|
+
- save_cache:
|
115
|
+
key: rails-bundle-v1-{{ checksum "Gemfile" }}
|
116
|
+
paths:
|
117
|
+
- vendor/bundle
|
118
|
+
|
119
|
+
# run tests!
|
120
|
+
- run:
|
121
|
+
name: Run Tests
|
122
|
+
command: bundle exec rake test
|
123
|
+
when: always
|
124
|
+
|
125
|
+
# collect reports
|
126
|
+
- store_artifacts:
|
127
|
+
path: coverage
|
128
|
+
destination: coverage
|
129
|
+
|
130
|
+
- store_test_results:
|
131
|
+
path: test/reports
|
132
|
+
|
133
|
+
ruby_2_2_9:
|
134
|
+
docker:
|
135
|
+
- image: circleci/ruby:2.2.9
|
136
|
+
environment:
|
137
|
+
BUNDLE_JOBS: 3
|
138
|
+
BUNDLE_RETRY: 3
|
139
|
+
BUNDLE_PATH: vendor/bundle
|
140
|
+
RAILS_ENV: test
|
141
|
+
|
142
|
+
working_directory: ~/simple_form_materialize
|
143
|
+
|
144
|
+
steps:
|
145
|
+
- checkout
|
146
|
+
|
147
|
+
# Download and cache dependencies
|
148
|
+
- restore_cache:
|
149
|
+
keys:
|
150
|
+
- rails-bundle-v1-{{ checksum "Gemfile" }}
|
151
|
+
- rails-bundle-v1-
|
152
|
+
|
153
|
+
- run:
|
154
|
+
name: Bundle Install
|
155
|
+
command: bundle check || bundle install
|
156
|
+
|
157
|
+
- save_cache:
|
158
|
+
key: rails-bundle-v1-{{ checksum "Gemfile" }}
|
159
|
+
paths:
|
160
|
+
- vendor/bundle
|
161
|
+
|
162
|
+
# run tests!
|
163
|
+
- run:
|
164
|
+
name: Run Tests
|
165
|
+
command: bundle exec rake test
|
166
|
+
when: always
|
167
|
+
|
168
|
+
# collect reports
|
169
|
+
- store_artifacts:
|
170
|
+
path: coverage
|
171
|
+
destination: coverage
|
172
|
+
|
173
|
+
- store_test_results:
|
174
|
+
path: test/reports
|
175
|
+
|
176
|
+
test:
|
177
|
+
docker:
|
178
|
+
- image: circleci/ruby:2.5.0
|
179
|
+
environment:
|
180
|
+
BUNDLE_JOBS: 3
|
181
|
+
BUNDLE_RETRY: 3
|
182
|
+
BUNDLE_PATH: vendor/bundle
|
183
|
+
RAILS_ENV: test
|
184
|
+
|
185
|
+
working_directory: ~/simple_form_materialize
|
186
|
+
|
187
|
+
steps:
|
188
|
+
- checkout
|
189
|
+
|
190
|
+
# Download and cache dependencies
|
191
|
+
- restore_cache:
|
192
|
+
keys:
|
193
|
+
- rails-bundle-v1-{{ checksum "Gemfile" }}
|
194
|
+
- rails-bundle-v1-
|
195
|
+
|
196
|
+
- run:
|
197
|
+
name: Bundle Install
|
198
|
+
command: bundle check || bundle install
|
199
|
+
|
200
|
+
- save_cache:
|
201
|
+
key: rails-bundle-v1-{{ checksum "Gemfile" }}
|
202
|
+
paths:
|
203
|
+
- vendor/bundle
|
204
|
+
|
205
|
+
# run tests!
|
206
|
+
- run:
|
207
|
+
name: Setup Code Climate test-reporter
|
42
208
|
command: |
|
43
|
-
|
209
|
+
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
210
|
+
chmod +x ./cc-test-reporter
|
44
211
|
|
45
212
|
- run:
|
46
|
-
name: Run
|
213
|
+
name: Run Tests
|
47
214
|
command: |
|
48
|
-
|
49
|
-
bundle exec
|
215
|
+
./cc-test-reporter before-build
|
216
|
+
bundle exec rake test
|
217
|
+
./cc-test-reporter after-build
|
218
|
+
when: always
|
50
219
|
|
51
220
|
# collect reports
|
52
221
|
- store_artifacts:
|
53
222
|
path: coverage
|
54
223
|
destination: coverage
|
224
|
+
|
225
|
+
- store_test_results:
|
226
|
+
path: test/reports
|
227
|
+
|
228
|
+
workflows:
|
229
|
+
version: 2
|
230
|
+
ruby-versions-and-test:
|
231
|
+
jobs:
|
232
|
+
- ruby_2_5_0
|
233
|
+
- ruby_2_4_3
|
234
|
+
- ruby_2_3_6
|
235
|
+
- ruby_2_2_9
|
236
|
+
- test:
|
237
|
+
requires:
|
238
|
+
- ruby_2_5_0
|
239
|
+
- ruby_2_4_3
|
240
|
+
- ruby_2_3_6
|
241
|
+
- ruby_2_2_9
|
data/.codeclimate.yml
CHANGED
@@ -1,18 +1,45 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
version: "2"
|
2
|
+
|
3
|
+
checks:
|
4
|
+
argument-count:
|
4
5
|
enabled: true
|
5
6
|
config:
|
6
|
-
|
7
|
-
|
8
|
-
fixme:
|
7
|
+
threshold: 4
|
8
|
+
complex-logic:
|
9
9
|
enabled: true
|
10
|
-
|
10
|
+
config:
|
11
|
+
threshold: 4
|
12
|
+
file-lines:
|
13
|
+
enabled: true
|
14
|
+
config:
|
15
|
+
threshold: 250
|
16
|
+
method-complexity:
|
17
|
+
enabled: true
|
18
|
+
config:
|
19
|
+
threshold: 5
|
20
|
+
method-count:
|
21
|
+
enabled: true
|
22
|
+
config:
|
23
|
+
threshold: 20
|
24
|
+
method-lines:
|
25
|
+
enabled: true
|
26
|
+
config:
|
27
|
+
threshold: 25
|
28
|
+
nested-control-flow:
|
29
|
+
enabled: true
|
30
|
+
config:
|
31
|
+
threshold: 4
|
32
|
+
return-statements:
|
33
|
+
enabled: true
|
34
|
+
config:
|
35
|
+
threshold: 4
|
36
|
+
similar-code:
|
37
|
+
enabled: true
|
38
|
+
identical-code:
|
11
39
|
enabled: true
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
-
|
17
|
-
-
|
18
|
-
- lib/generators/templates
|
40
|
+
plugins:
|
41
|
+
rubocop:
|
42
|
+
enabled: true
|
43
|
+
exclude_patterns:
|
44
|
+
- test/rails_app
|
45
|
+
- lib/generators/templates
|
data/.gitignore
CHANGED
@@ -43,13 +43,9 @@ build-iPhoneSimulator/
|
|
43
43
|
|
44
44
|
# for a library or gem, you might want to ignore these files since the code is
|
45
45
|
# intended to run in multiple environments; otherwise, check them in:
|
46
|
-
|
47
|
-
|
46
|
+
Gemfile.lock
|
47
|
+
.ruby-version
|
48
48
|
# .ruby-gemset
|
49
49
|
|
50
50
|
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
51
51
|
.rvmrc
|
52
|
-
|
53
|
-
|
54
|
-
# Linter outputs
|
55
|
-
rubocop-results.html
|
data/.rubocop.yml
CHANGED
data/.yardopts
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,13 +1,21 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## v1.1.1
|
4
|
+
|
5
|
+
#### Features
|
6
|
+
- Upgrade circleci to support 2.5, 2.4, 2.3, and 2.2 ruby testing
|
7
|
+
|
8
|
+
#### Bugs
|
9
|
+
- N/A
|
10
|
+
|
3
11
|
## v1.1.0
|
4
12
|
|
5
13
|
#### Features
|
6
|
-
- Various Enhancements to the repo (
|
14
|
+
- Various Enhancements to the repo (#4)
|
7
15
|
|
8
16
|
#### Bugs
|
9
|
-
- Fix Input upload (
|
10
|
-
- Resolve dependency Issues (
|
17
|
+
- Fix Input upload (#3)
|
18
|
+
- Resolve dependency Issues (#1)
|
11
19
|
|
12
20
|
## v1.0.1
|
13
21
|
- Fix ReadMe typos
|
data/Gemfile
CHANGED
@@ -2,16 +2,14 @@
|
|
2
2
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
5
|
-
ruby "2.4.1"
|
6
|
-
|
7
5
|
gemspec
|
8
6
|
|
9
|
-
gem "
|
10
|
-
gem "rails", "~> 5.0.0"
|
7
|
+
gem "rails"
|
11
8
|
gem "rubocop"
|
12
9
|
gem "simplecov"
|
13
10
|
gem "yard"
|
14
11
|
|
15
12
|
group :test do
|
16
13
|
gem "codeclimate-test-reporter", require: false
|
14
|
+
gem "minitest-ci"
|
17
15
|
end
|
data/README.md
CHANGED
@@ -1,12 +1,10 @@
|
|
1
1
|
# Simple Form Materialize
|
2
2
|
|
3
|
-
[](https://lima.codeclimate.com/github/techgurupezza/simple_form_materialize/coverage)
|
7
|
-
[](https://gemnasium.com/github.com/techgurupezza/simple_form_materialize)
|
3
|
+
[](https://circleci.com/gh/techgurupezza/simple_form_materialize)
|
4
|
+
[](https://codeclimate.com/github/techgurupezza/simple_form_materialize/maintainability)
|
5
|
+
[](https://codeclimate.com/github/techgurupezza/simple_form_materialize/test_coverage)
|
8
6
|
[](https://rubygems.org/gems/simple_form_materialize)
|
9
|
-
|
7
|
+
[](https://rubygems.org/gems/simple_form_materialize)
|
10
8
|
|
11
9
|
Simple Form Materialize is here to help generate your configuration needed to using simple form with materialized styles.
|
12
10
|
This gem is not intended to live forever in your gemfile. It must be in your gemfile to load the resources needed from the generator.
|
@@ -22,7 +20,7 @@ gem "materialize-sass"
|
|
22
20
|
gem "material_icons"
|
23
21
|
gem "simple_form"
|
24
22
|
|
25
|
-
gem "simple_form_materialize", "~>1.
|
23
|
+
gem "simple_form_materialize", "~>1.1.1"
|
26
24
|
```
|
27
25
|
|
28
26
|
## Usage
|
data/Rakefile
CHANGED
@@ -2,7 +2,6 @@
|
|
2
2
|
|
3
3
|
require "bundler/gem_tasks"
|
4
4
|
require "rake/testtask"
|
5
|
-
require "rubocop/rake_task"
|
6
5
|
|
7
6
|
Rake::TestTask.new(:test) do |t|
|
8
7
|
t.libs << "test"
|
@@ -10,12 +9,4 @@ Rake::TestTask.new(:test) do |t|
|
|
10
9
|
t.test_files = FileList["test/**/*_test.rb"]
|
11
10
|
end
|
12
11
|
|
13
|
-
desc "Rubocop Task"
|
14
|
-
task(:rubocop) do
|
15
|
-
RuboCop::RakeTask.new do |t|
|
16
|
-
t.options = ["-c", ".rubocop.yml", "-D"]
|
17
|
-
t.fail_on_error = true
|
18
|
-
end
|
19
|
-
end
|
20
|
-
|
21
12
|
task default: :test
|
data/_config.yml
CHANGED
@@ -1 +1 @@
|
|
1
|
-
theme: jekyll-theme-
|
1
|
+
theme: jekyll-theme-architect
|
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
|
|
21
21
|
spec.test_files = `git ls-files -- test/*`.split("\n")
|
22
22
|
spec.require_paths = ["lib"]
|
23
23
|
|
24
|
-
spec.required_ruby_version = ">= 2.2
|
24
|
+
spec.required_ruby_version = ">= 2.2"
|
25
25
|
spec.required_rubygems_version = "> 1.3.1"
|
26
26
|
|
27
27
|
spec.add_dependency "railties", ">= 4.1.0", "< 5.2"
|
data/test/test_helper.rb
CHANGED
@@ -1,9 +1,20 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require "simplecov"
|
4
|
+
|
5
|
+
SimpleCov.formatter = SimpleCov::Formatter::HTMLFormatter
|
6
|
+
|
7
|
+
SimpleCov.start do
|
8
|
+
add_filter "/test/"
|
9
|
+
add_group "Library", "lib/"
|
10
|
+
end
|
11
|
+
|
12
|
+
SimpleCov.minimum_coverage_by_file 90
|
13
|
+
SimpleCov.minimum_coverage 90
|
14
|
+
|
3
15
|
ENV["RAILS_ENV"] = "test"
|
4
16
|
$LOAD_PATH.unshift File.expand_path("../../lib", __FILE__)
|
5
17
|
|
6
|
-
require "simplecov"
|
7
18
|
require "simple_form_materialize"
|
8
19
|
require "rails_app/config/environment"
|
9
20
|
require "rails/test_help"
|
@@ -13,20 +24,6 @@ require "minitest/pride"
|
|
13
24
|
require "minitest/autorun"
|
14
25
|
require "minitest/ci"
|
15
26
|
|
16
|
-
if ENV["CIRCLE_TEST_REPORTS"].present?
|
17
|
-
Minitest::Ci.report_dir = "#{ENV['CIRCLE_TEST_REPORTS']}/reports"
|
18
|
-
end
|
19
|
-
|
20
|
-
SimpleCov.formatters = [
|
21
|
-
SimpleCov::Formatter::HTMLFormatter
|
22
|
-
]
|
23
|
-
|
24
|
-
SimpleCov.start do
|
25
|
-
add_filter "/test/"
|
26
|
-
|
27
|
-
add_group "Library", "lib"
|
28
|
-
end
|
29
|
-
|
30
27
|
# For generators
|
31
28
|
require "rails/generators/test_case"
|
32
29
|
require "generators/simple_form_materialize/install_generator"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simple_form_materialize
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christopher Pezza
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-02-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -44,12 +44,10 @@ files:
|
|
44
44
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
45
45
|
- ".gitignore"
|
46
46
|
- ".rubocop.yml"
|
47
|
-
- ".ruby-version"
|
48
47
|
- ".yardopts"
|
49
48
|
- CHANGELOG.md
|
50
49
|
- CODE_OF_CONDUCT.md
|
51
50
|
- Gemfile
|
52
|
-
- Gemfile.lock
|
53
51
|
- LICENSE.txt
|
54
52
|
- README.md
|
55
53
|
- Rakefile
|
@@ -104,7 +102,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
104
102
|
requirements:
|
105
103
|
- - ">="
|
106
104
|
- !ruby/object:Gem::Version
|
107
|
-
version: 2.2
|
105
|
+
version: '2.2'
|
108
106
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
109
107
|
requirements:
|
110
108
|
- - ">"
|
data/.ruby-version
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
2.4.1
|
data/Gemfile.lock
DELETED
@@ -1,153 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
simple_form_materialize (1.1.0)
|
5
|
-
railties (>= 4.1.0, < 5.2)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
actioncable (5.0.6)
|
11
|
-
actionpack (= 5.0.6)
|
12
|
-
nio4r (>= 1.2, < 3.0)
|
13
|
-
websocket-driver (~> 0.6.1)
|
14
|
-
actionmailer (5.0.6)
|
15
|
-
actionpack (= 5.0.6)
|
16
|
-
actionview (= 5.0.6)
|
17
|
-
activejob (= 5.0.6)
|
18
|
-
mail (~> 2.5, >= 2.5.4)
|
19
|
-
rails-dom-testing (~> 2.0)
|
20
|
-
actionpack (5.0.6)
|
21
|
-
actionview (= 5.0.6)
|
22
|
-
activesupport (= 5.0.6)
|
23
|
-
rack (~> 2.0)
|
24
|
-
rack-test (~> 0.6.3)
|
25
|
-
rails-dom-testing (~> 2.0)
|
26
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
27
|
-
actionview (5.0.6)
|
28
|
-
activesupport (= 5.0.6)
|
29
|
-
builder (~> 3.1)
|
30
|
-
erubis (~> 2.7.0)
|
31
|
-
rails-dom-testing (~> 2.0)
|
32
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
33
|
-
activejob (5.0.6)
|
34
|
-
activesupport (= 5.0.6)
|
35
|
-
globalid (>= 0.3.6)
|
36
|
-
activemodel (5.0.6)
|
37
|
-
activesupport (= 5.0.6)
|
38
|
-
activerecord (5.0.6)
|
39
|
-
activemodel (= 5.0.6)
|
40
|
-
activesupport (= 5.0.6)
|
41
|
-
arel (~> 7.0)
|
42
|
-
activesupport (5.0.6)
|
43
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
44
|
-
i18n (~> 0.7)
|
45
|
-
minitest (~> 5.1)
|
46
|
-
tzinfo (~> 1.1)
|
47
|
-
arel (7.1.4)
|
48
|
-
ast (2.3.0)
|
49
|
-
builder (3.2.3)
|
50
|
-
codeclimate-test-reporter (1.0.7)
|
51
|
-
simplecov
|
52
|
-
concurrent-ruby (1.0.5)
|
53
|
-
crass (1.0.3)
|
54
|
-
docile (1.1.5)
|
55
|
-
erubis (2.7.0)
|
56
|
-
globalid (0.4.1)
|
57
|
-
activesupport (>= 4.2.0)
|
58
|
-
i18n (0.9.1)
|
59
|
-
concurrent-ruby (~> 1.0)
|
60
|
-
json (2.1.0)
|
61
|
-
loofah (2.1.1)
|
62
|
-
crass (~> 1.0.2)
|
63
|
-
nokogiri (>= 1.5.9)
|
64
|
-
mail (2.7.0)
|
65
|
-
mini_mime (>= 0.1.1)
|
66
|
-
method_source (0.9.0)
|
67
|
-
mini_mime (1.0.0)
|
68
|
-
mini_portile2 (2.3.0)
|
69
|
-
minitest (5.10.3)
|
70
|
-
minitest-ci (3.3.0)
|
71
|
-
minitest (>= 5.0.6)
|
72
|
-
nio4r (2.1.0)
|
73
|
-
nokogiri (1.8.1)
|
74
|
-
mini_portile2 (~> 2.3.0)
|
75
|
-
parallel (1.12.1)
|
76
|
-
parser (2.4.0.2)
|
77
|
-
ast (~> 2.3)
|
78
|
-
powerpack (0.1.1)
|
79
|
-
rack (2.0.3)
|
80
|
-
rack-test (0.6.3)
|
81
|
-
rack (>= 1.0)
|
82
|
-
rails (5.0.6)
|
83
|
-
actioncable (= 5.0.6)
|
84
|
-
actionmailer (= 5.0.6)
|
85
|
-
actionpack (= 5.0.6)
|
86
|
-
actionview (= 5.0.6)
|
87
|
-
activejob (= 5.0.6)
|
88
|
-
activemodel (= 5.0.6)
|
89
|
-
activerecord (= 5.0.6)
|
90
|
-
activesupport (= 5.0.6)
|
91
|
-
bundler (>= 1.3.0)
|
92
|
-
railties (= 5.0.6)
|
93
|
-
sprockets-rails (>= 2.0.0)
|
94
|
-
rails-dom-testing (2.0.3)
|
95
|
-
activesupport (>= 4.2.0)
|
96
|
-
nokogiri (>= 1.6)
|
97
|
-
rails-html-sanitizer (1.0.3)
|
98
|
-
loofah (~> 2.0)
|
99
|
-
railties (5.0.6)
|
100
|
-
actionpack (= 5.0.6)
|
101
|
-
activesupport (= 5.0.6)
|
102
|
-
method_source
|
103
|
-
rake (>= 0.8.7)
|
104
|
-
thor (>= 0.18.1, < 2.0)
|
105
|
-
rainbow (3.0.0)
|
106
|
-
rake (12.3.0)
|
107
|
-
rubocop (0.52.0)
|
108
|
-
parallel (~> 1.10)
|
109
|
-
parser (>= 2.4.0.2, < 3.0)
|
110
|
-
powerpack (~> 0.1)
|
111
|
-
rainbow (>= 2.2.2, < 4.0)
|
112
|
-
ruby-progressbar (~> 1.7)
|
113
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
114
|
-
ruby-progressbar (1.9.0)
|
115
|
-
simplecov (0.15.1)
|
116
|
-
docile (~> 1.1.0)
|
117
|
-
json (>= 1.8, < 3)
|
118
|
-
simplecov-html (~> 0.10.0)
|
119
|
-
simplecov-html (0.10.2)
|
120
|
-
sprockets (3.7.1)
|
121
|
-
concurrent-ruby (~> 1.0)
|
122
|
-
rack (> 1, < 3)
|
123
|
-
sprockets-rails (3.2.1)
|
124
|
-
actionpack (>= 4.0)
|
125
|
-
activesupport (>= 4.0)
|
126
|
-
sprockets (>= 3.0.0)
|
127
|
-
thor (0.20.0)
|
128
|
-
thread_safe (0.3.6)
|
129
|
-
tzinfo (1.2.4)
|
130
|
-
thread_safe (~> 0.1)
|
131
|
-
unicode-display_width (1.3.0)
|
132
|
-
websocket-driver (0.6.5)
|
133
|
-
websocket-extensions (>= 0.1.0)
|
134
|
-
websocket-extensions (0.1.3)
|
135
|
-
yard (0.9.12)
|
136
|
-
|
137
|
-
PLATFORMS
|
138
|
-
ruby
|
139
|
-
|
140
|
-
DEPENDENCIES
|
141
|
-
codeclimate-test-reporter
|
142
|
-
minitest-ci
|
143
|
-
rails (~> 5.0.0)
|
144
|
-
rubocop
|
145
|
-
simple_form_materialize!
|
146
|
-
simplecov
|
147
|
-
yard
|
148
|
-
|
149
|
-
RUBY VERSION
|
150
|
-
ruby 2.4.1p111
|
151
|
-
|
152
|
-
BUNDLED WITH
|
153
|
-
1.16.1
|