mutils 0.2.34 → 1.0.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/.github/CONTRIBUTING.md +3 -3
- data/.github/dependabot.yml +11 -0
- data/.gitignore +2 -0
- data/.huskyrc +7 -0
- data/.rspec +0 -1
- data/.rubocop.yml +2 -7
- data/.rubocop_todo.yml +13 -1
- data/.travis.yml +26 -4
- data/CHANGELOG.md +88 -37
- data/Gemfile +6 -0
- data/Gemfile.lock +44 -71
- data/README.md +118 -39
- data/SECURITY.md +13 -0
- data/Version +1 -0
- data/commitlint.config.js +1 -0
- data/gemdeploy.sh +10 -0
- data/lib/mutils.rb +3 -3
- data/lib/mutils/lib/helper.rb +42 -0
- data/lib/mutils/lib/result_hash.rb +25 -0
- data/lib/mutils/serialization/base_serializer.rb +0 -8
- data/lib/mutils/serialization/methods/attributes.rb +52 -0
- data/lib/mutils/serialization/methods/main.rb +27 -0
- data/lib/mutils/serialization/methods/relations.rb +40 -0
- data/lib/mutils/serialization/results/attributes.rb +24 -0
- data/lib/mutils/serialization/results/main.rb +59 -0
- data/lib/mutils/serialization/results/relations.rb +23 -0
- data/lib/mutils/serialization/serialization_includes.rb +9 -7
- data/lib/mutils/serialization/serialization_methods.rb +7 -67
- data/lib/mutils/serialization/serialization_results.rb +6 -57
- data/lib/mutils/version.rb +1 -1
- data/mutils.gemspec +5 -8
- data/package-lock.json +7157 -0
- data/package.json +94 -0
- metadata +25 -71
- data/.github/workflows/gempush.yml +0 -28
- data/.mergify.yml +0 -8
- data/.ruby-version +0 -1
- data/BENCHMARK-SERIALIZER-JSON.md +0 -82
- data/Makefile +0 -8
- data/benchmark/benchmark-serializer-json.rb +0 -252
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e9fc2509db4c74bc7f6cf590ce0f03174cff01879c6d2dad059036301dc524ef
|
4
|
+
data.tar.gz: fe132e01787366169ea3f24b3c3554f1de41aac808bbe368bea1f08fbfa73a80
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb866ab849a3efd8a9e981966f2d0cdb045e738db700a3a90d9f7b25ec286dfe96592c4bb361355bf30da569ba82bf7b36ac5d1e5a08e24aebace117b1f18b8e
|
7
|
+
data.tar.gz: 433b55c1ea6ed5459d65d9f8e5df6b974bae3c7b44b1bf3ec73ee86e43eb54d5830bba30913117dfdbe6ab3ce394607d8857ba763e4c838932f25c4d558d4d24
|
data/.github/CONTRIBUTING.md
CHANGED
@@ -3,11 +3,11 @@
|
|
3
3
|
We love pull requests from everyone. By participating in this project, you
|
4
4
|
agree to abide by the [code of conduct].
|
5
5
|
|
6
|
-
[code of conduct]: https://github.com/
|
6
|
+
[code of conduct]: https://github.com/code-vedas/mutils/blob/master/CODE_OF_CONDUCT.md
|
7
7
|
|
8
8
|
Fork, then clone the repo:
|
9
9
|
|
10
|
-
git clone git@github.com:
|
10
|
+
git clone git@github.com:code-vedas/mutils.git
|
11
11
|
|
12
12
|
Set up your machine:
|
13
13
|
|
@@ -23,7 +23,7 @@ Make your change. Add tests for your change. Make the tests pass:
|
|
23
23
|
|
24
24
|
Push to your fork and [submit a pull request][pr].
|
25
25
|
|
26
|
-
[pr]: https://github.com/
|
26
|
+
[pr]: https://github.com/code-vedas/mutils/compare/
|
27
27
|
|
28
28
|
At this point you're waiting on us. We like to at least comment on pull requests
|
29
29
|
within three business days (and, typically, one business day). We may suggest
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# To get started with Dependabot version updates, you'll need to specify which
|
2
|
+
# package ecosystems to update and where the package manifests are located.
|
3
|
+
# Please see the documentation for all configuration options:
|
4
|
+
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
5
|
+
|
6
|
+
version: 2
|
7
|
+
updates:
|
8
|
+
- package-ecosystem: "bundler"
|
9
|
+
directory: "/" # Location of package manifests
|
10
|
+
schedule:
|
11
|
+
interval: "daily"
|
data/.gitignore
CHANGED
data/.huskyrc
ADDED
data/.rspec
CHANGED
data/.rubocop.yml
CHANGED
@@ -1,12 +1,7 @@
|
|
1
1
|
inherit_from: .rubocop_todo.yml
|
2
2
|
|
3
3
|
AllCops:
|
4
|
-
TargetRubyVersion: "2.
|
5
|
-
Naming/FileName:
|
6
|
-
Exclude:
|
7
|
-
- 'benchmark/benchmark-serializer-json.rb'
|
8
|
-
Style/Documentation:
|
4
|
+
TargetRubyVersion: "2.5.0"
|
9
5
|
Exclude:
|
10
6
|
- 'spec/**/*'
|
11
|
-
- 'test/**/*'
|
12
|
-
- 'benchmark/benchmark-serializer-json.rb'
|
7
|
+
- 'test/**/*'
|
data/.rubocop_todo.yml
CHANGED
@@ -33,5 +33,17 @@ Style/RescueModifier:
|
|
33
33
|
# Cop supports --auto-correct.
|
34
34
|
# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
|
35
35
|
# URISchemes: http, https
|
36
|
-
|
36
|
+
Layout/LineLength:
|
37
37
|
Max: 608
|
38
|
+
Metrics/MethodLength:
|
39
|
+
Max: 20
|
40
|
+
Metrics/PerceivedComplexity:
|
41
|
+
Max: 7
|
42
|
+
Metrics/AbcSize:
|
43
|
+
Max: 22
|
44
|
+
Style/HashEachMethods:
|
45
|
+
Enabled: false
|
46
|
+
Style/HashTransformKeys:
|
47
|
+
Enabled: false
|
48
|
+
Style/HashTransformValues:
|
49
|
+
Enabled: false
|
data/.travis.yml
CHANGED
@@ -1,7 +1,29 @@
|
|
1
|
-
|
1
|
+
rvm:
|
2
|
+
- 2.5
|
3
|
+
- 2.6.3
|
4
|
+
- 2.6.5
|
5
|
+
- 2.7.0
|
6
|
+
- 2.7.1
|
7
|
+
- jruby-9.2.5.0
|
8
|
+
- jruby-9.2.10.0
|
2
9
|
sudo: false
|
3
10
|
language: ruby
|
4
11
|
cache: bundler
|
5
|
-
|
6
|
-
- 2.
|
7
|
-
|
12
|
+
before_install:
|
13
|
+
- gem install bundler -v 2.0.1
|
14
|
+
- gem install rspec
|
15
|
+
- nvm use 11
|
16
|
+
- npm install
|
17
|
+
script: bundle exec rubocop lib && bundle exec rspec
|
18
|
+
branches:
|
19
|
+
only: master
|
20
|
+
bundler_args: --with=development,test --jobs=3 --retry=3
|
21
|
+
jobs:
|
22
|
+
include:
|
23
|
+
- stage: release
|
24
|
+
rvm: 2.6.5
|
25
|
+
script: npx semantic-release
|
26
|
+
stages:
|
27
|
+
- test
|
28
|
+
- name: release
|
29
|
+
if: (NOT type IN (pull_request)) AND (branch = master)
|
data/CHANGELOG.md
CHANGED
@@ -1,79 +1,130 @@
|
|
1
|
+
## [1.0.1](https://github.com/Code-Vedas/mutils/compare/v1.0.0...v1.0.1) (2020-07-24)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* **semantic-release:** enable semantic-release ([aa9c28f](https://github.com/Code-Vedas/mutils/commit/aa9c28fb8da7fcd1915a189bda22f8421a566eee))
|
7
|
+
|
1
8
|
# Changelog
|
9
|
+
## [v1.0.0](https://github.com/code-vedas/mutils/tree/v0.2.36) (2020-04-17)
|
2
10
|
|
3
|
-
|
11
|
+
[Full Changelog](https://github.com/code-vedas/mutils/compare/v0.2.36...v1.0.0)
|
4
12
|
|
5
|
-
|
6
|
-
|
7
|
-
-
|
8
|
-
-
|
13
|
+
**First Stable release: Features**
|
14
|
+
- Performance upto 35i/s under load
|
15
|
+
- Observed 35-40 MB of memory usage
|
16
|
+
- Fully featured JSON serializer similar to Active Serializer but with more power and speed.
|
17
|
+
|
18
|
+
**Changes:**
|
19
|
+
- Code refactored
|
20
|
+
- Using cache for expensive operations
|
21
|
+
|
22
|
+
## [v0.2.36](https://github.com/code-vedas/mutils/tree/v0.2.36) (2020-04-14)
|
23
|
+
|
24
|
+
[Full Changelog](https://github.com/code-vedas/mutils/compare/v0.2.35...v0.2.36)
|
9
25
|
|
10
26
|
**Merged pull requests:**
|
11
27
|
|
12
|
-
-
|
28
|
+
- Remove active support dep [\#34](https://github.com/code-vedas/mutils/pull/34) ([niteshpurohit](https://github.com/niteshpurohit))
|
29
|
+
- Conditional attributes and relations [\#32](https://github.com/code-vedas/mutils/pull/32) ([niteshpurohit](https://github.com/niteshpurohit))
|
30
|
+
- chore: add more ruby version and os to test [\#31](https://github.com/code-vedas/mutils/pull/31) ([niteshpurohit](https://github.com/niteshpurohit))
|
13
31
|
|
14
|
-
## [v0.2.
|
32
|
+
## [v0.2.35](https://github.com/code-vedas/mutils/tree/v0.2.35) (2020-03-30)
|
15
33
|
|
16
|
-
[Full Changelog](https://github.com/
|
34
|
+
[Full Changelog](https://github.com/code-vedas/mutils/compare/v0.2.34...v0.2.35)
|
17
35
|
|
18
36
|
**Merged pull requests:**
|
19
37
|
|
20
|
-
-
|
21
|
-
-
|
38
|
+
- new option 'label' for relations [\#30](https://github.com/code-vedas/mutils/pull/30) ([niteshpurohit](https://github.com/niteshpurohit))
|
39
|
+
- added custom\_method and attribute example [\#29](https://github.com/code-vedas/mutils/pull/29) ([niteshpurohit](https://github.com/niteshpurohit))
|
40
|
+
- chore: update changelog [\#28](https://github.com/code-vedas/mutils/pull/28) ([niteshpurohit](https://github.com/niteshpurohit))
|
22
41
|
|
23
|
-
## [v0.2.
|
42
|
+
## [v0.2.34](https://github.com/code-vedas/mutils/tree/v0.2.34) (2020-03-29)
|
24
43
|
|
25
|
-
[Full Changelog](https://github.com/
|
44
|
+
[Full Changelog](https://github.com/code-vedas/mutils/compare/v0.2.33...v0.2.34)
|
26
45
|
|
27
46
|
**Merged pull requests:**
|
28
47
|
|
29
|
-
-
|
48
|
+
- Feature/attribute can be optional [\#27](https://github.com/code-vedas/mutils/pull/27) ([niteshpurohit](https://github.com/niteshpurohit))
|
30
49
|
|
31
|
-
## [v0.2.
|
50
|
+
## [v0.2.33](https://github.com/code-vedas/mutils/tree/v0.2.33) (2020-03-29)
|
32
51
|
|
33
|
-
[Full Changelog](https://github.com/
|
52
|
+
[Full Changelog](https://github.com/code-vedas/mutils/compare/v0.2.32...v0.2.33)
|
34
53
|
|
35
54
|
**Merged pull requests:**
|
36
55
|
|
37
|
-
-
|
56
|
+
- Added new custom\_method in serializer to control if include method [\#26](https://github.com/code-vedas/mutils/pull/26) ([niteshpurohit](https://github.com/niteshpurohit))
|
57
|
+
- Update CHANGELOG.md [\#25](https://github.com/code-vedas/mutils/pull/25) ([niteshpurohit](https://github.com/niteshpurohit))
|
58
|
+
- Create .codeclimate.yml [\#24](https://github.com/code-vedas/mutils/pull/24) ([niteshpurohit](https://github.com/niteshpurohit))
|
59
|
+
- changelog: v0.2.32 [\#22](https://github.com/code-vedas/mutils/pull/22) ([niteshpurohit](https://github.com/niteshpurohit))
|
38
60
|
|
39
|
-
## [v0.2.
|
61
|
+
## [v0.2.32](https://github.com/code-vedas/mutils/tree/v0.2.32) (2020-03-18)
|
40
62
|
|
41
|
-
[Full Changelog](https://github.com/
|
63
|
+
[Full Changelog](https://github.com/code-vedas/mutils/compare/v0.2.31...v0.2.32)
|
42
64
|
|
43
|
-
**
|
65
|
+
**Merged pull requests:**
|
44
66
|
|
45
|
-
- Feature/
|
67
|
+
- Feature/improve performance [\#21](https://github.com/code-vedas/mutils/pull/21) ([niteshpurohit](https://github.com/niteshpurohit))
|
46
68
|
|
47
|
-
## [v0.2.
|
69
|
+
## [v0.2.31](https://github.com/code-vedas/mutils/tree/v0.2.31) (2020-03-18)
|
48
70
|
|
49
|
-
[Full Changelog](https://github.com/
|
71
|
+
[Full Changelog](https://github.com/code-vedas/mutils/compare/v0.2.30...v0.2.31)
|
50
72
|
|
51
|
-
**
|
73
|
+
**Merged pull requests:**
|
74
|
+
|
75
|
+
- Update version.rb [\#20](https://github.com/code-vedas/mutils/pull/20) ([niteshpurohit](https://github.com/niteshpurohit))
|
76
|
+
- Rake 13.0 [\#19](https://github.com/code-vedas/mutils/pull/19) ([niteshpurohit](https://github.com/niteshpurohit))
|
52
77
|
|
53
|
-
|
78
|
+
## [v0.2.30](https://github.com/code-vedas/mutils/tree/v0.2.30) (2020-03-17)
|
79
|
+
|
80
|
+
[Full Changelog](https://github.com/code-vedas/mutils/compare/v0.2.29...v0.2.30)
|
54
81
|
|
55
82
|
**Merged pull requests:**
|
56
83
|
|
57
|
-
-
|
58
|
-
|
59
|
-
|
60
|
-
- Update README.md [\#8](https://github.com/niteshpurohit/mutils/pull/8) ([niteshpurohit](https://github.com/niteshpurohit))
|
61
|
-
- Update README.md [\#7](https://github.com/niteshpurohit/mutils/pull/7) ([niteshpurohit](https://github.com/niteshpurohit))
|
62
|
-
- Update README.md [\#6](https://github.com/niteshpurohit/mutils/pull/6) ([niteshpurohit](https://github.com/niteshpurohit))
|
84
|
+
- Deps [\#18](https://github.com/code-vedas/mutils/pull/18) ([niteshpurohit](https://github.com/niteshpurohit))
|
85
|
+
|
86
|
+
## [v0.2.29](https://github.com/code-vedas/mutils/tree/v0.2.29) (2019-12-07)
|
63
87
|
|
64
|
-
|
88
|
+
[Full Changelog](https://github.com/code-vedas/mutils/compare/v0.2.28...v0.2.29)
|
65
89
|
|
66
|
-
|
90
|
+
**Merged pull requests:**
|
67
91
|
|
68
|
-
|
92
|
+
- Scope Variable bug [\#14](https://github.com/code-vedas/mutils/pull/14) ([niteshpurohit](https://github.com/niteshpurohit))
|
69
93
|
|
70
|
-
[
|
94
|
+
## [v0.2.28](https://github.com/code-vedas/mutils/tree/v0.2.28) (2019-11-26)
|
95
|
+
|
96
|
+
[Full Changelog](https://github.com/code-vedas/mutils/compare/v0.2.27...v0.2.28)
|
97
|
+
|
98
|
+
**Implemented enhancements:**
|
99
|
+
|
100
|
+
- Feature/scoped generator [\#13](https://github.com/code-vedas/mutils/pull/13) ([niteshpurohit](https://github.com/niteshpurohit))
|
101
|
+
|
102
|
+
## [v0.2.27](https://github.com/code-vedas/mutils/tree/v0.2.27) (2019-11-25)
|
103
|
+
|
104
|
+
[Full Changelog](https://github.com/code-vedas/mutils/compare/v0.2.26...v0.2.27)
|
105
|
+
|
106
|
+
**Implemented enhancements:**
|
107
|
+
|
108
|
+
- feat: coveralls added [\#5](https://github.com/code-vedas/mutils/pull/5) ([niteshpurohit](https://github.com/niteshpurohit))
|
71
109
|
|
72
110
|
**Merged pull requests:**
|
73
111
|
|
74
|
-
-
|
75
|
-
-
|
112
|
+
- Update CHANGELOG.md [\#12](https://github.com/code-vedas/mutils/pull/12) ([niteshpurohit](https://github.com/niteshpurohit))
|
113
|
+
- Update version.rb [\#11](https://github.com/code-vedas/mutils/pull/11) ([niteshpurohit](https://github.com/niteshpurohit))
|
114
|
+
- Removing code smells [\#9](https://github.com/code-vedas/mutils/pull/9) ([niteshpurohit](https://github.com/niteshpurohit))
|
115
|
+
- Update README.md [\#8](https://github.com/code-vedas/mutils/pull/8) ([niteshpurohit](https://github.com/niteshpurohit))
|
116
|
+
- Update README.md [\#7](https://github.com/code-vedas/mutils/pull/7) ([niteshpurohit](https://github.com/niteshpurohit))
|
117
|
+
- Update README.md [\#6](https://github.com/code-vedas/mutils/pull/6) ([niteshpurohit](https://github.com/niteshpurohit))
|
118
|
+
|
119
|
+
## [v0.2.26](https://github.com/code-vedas/mutils/tree/v0.2.26) (2019-11-24)
|
76
120
|
|
121
|
+
[Full Changelog](https://github.com/code-vedas/mutils/compare/v0.2.25...v0.2.26)
|
77
122
|
|
123
|
+
## [v0.2.25](https://github.com/code-vedas/mutils/tree/v0.2.25) (2019-11-24)
|
124
|
+
|
125
|
+
[Full Changelog](https://github.com/code-vedas/mutils/compare/885f96959dd3701ac20ed0981b920be753c00db0...v0.2.25)
|
126
|
+
|
127
|
+
**Merged pull requests:**
|
78
128
|
|
79
|
-
|
129
|
+
- Feature/improve concurrency [\#4](https://github.com/code-vedas/mutils/pull/4) ([niteshpurohit](https://github.com/niteshpurohit))
|
130
|
+
- Testing Deploy [\#3](https://github.com/code-vedas/mutils/pull/3) ([niteshpurohit](https://github.com/niteshpurohit))
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,73 +1,46 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
mutils (0.
|
5
|
-
|
4
|
+
mutils (1.0.0)
|
5
|
+
dry-inflector
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
rack-test (>= 0.6.3)
|
15
|
-
rails-dom-testing (~> 2.0)
|
16
|
-
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
17
|
-
actionview (6.0.2.2)
|
18
|
-
activesupport (= 6.0.2.2)
|
19
|
-
builder (~> 3.1)
|
20
|
-
erubi (~> 1.4)
|
21
|
-
rails-dom-testing (~> 2.0)
|
22
|
-
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
23
|
-
activesupport (6.0.2.2)
|
24
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
25
|
-
i18n (>= 0.7, < 2)
|
26
|
-
minitest (~> 5.1)
|
27
|
-
tzinfo (~> 1.1)
|
28
|
-
zeitwerk (~> 2.2)
|
29
|
-
builder (3.2.4)
|
30
|
-
concurrent-ruby (1.1.6)
|
10
|
+
ast (2.4.1)
|
11
|
+
benchmark-malloc (0.2.0)
|
12
|
+
benchmark-perf (0.6.0)
|
13
|
+
benchmark-trend (0.4.0)
|
31
14
|
coveralls (0.8.23)
|
32
15
|
json (>= 1.8, < 3)
|
33
16
|
simplecov (~> 0.16.1)
|
34
17
|
term-ansicolor (~> 1.3)
|
35
18
|
thor (>= 0.19.4, < 2.0)
|
36
19
|
tins (~> 1.6)
|
37
|
-
crass (1.0.6)
|
38
20
|
diff-lcs (1.3)
|
39
|
-
diffy (3.3.0)
|
40
21
|
docile (1.3.2)
|
41
|
-
|
42
|
-
i18n (1.8.2)
|
43
|
-
concurrent-ruby (~> 1.0)
|
22
|
+
dry-inflector (0.2.0)
|
44
23
|
json (2.3.0)
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
nokogiri (1.10.9)
|
54
|
-
mini_portile2 (~> 2.4.0)
|
55
|
-
ox (2.13.2)
|
56
|
-
rack (2.2.2)
|
57
|
-
rack-test (1.1.0)
|
58
|
-
rack (>= 1.0, < 3)
|
59
|
-
rails-dom-testing (2.0.3)
|
60
|
-
activesupport (>= 4.2.0)
|
61
|
-
nokogiri (>= 1.6)
|
62
|
-
rails-html-sanitizer (1.3.0)
|
63
|
-
loofah (~> 2.3)
|
64
|
-
railties (6.0.2.2)
|
65
|
-
actionpack (= 6.0.2.2)
|
66
|
-
activesupport (= 6.0.2.2)
|
67
|
-
method_source
|
68
|
-
rake (>= 0.8.7)
|
69
|
-
thor (>= 0.20.3, < 2.0)
|
24
|
+
json (2.3.0-java)
|
25
|
+
parallel (1.19.1)
|
26
|
+
parser (2.7.1.4)
|
27
|
+
ast (~> 2.4.1)
|
28
|
+
pluginator (1.5.0)
|
29
|
+
pre-commit (0.39.0)
|
30
|
+
pluginator (~> 1.5)
|
31
|
+
rainbow (3.0.0)
|
70
32
|
rake (13.0.1)
|
33
|
+
regexp_parser (1.7.1)
|
34
|
+
rexml (3.2.4)
|
35
|
+
rspec (3.9.0)
|
36
|
+
rspec-core (~> 3.9.0)
|
37
|
+
rspec-expectations (~> 3.9.0)
|
38
|
+
rspec-mocks (~> 3.9.0)
|
39
|
+
rspec-benchmark (0.6.0)
|
40
|
+
benchmark-malloc (~> 0.2)
|
41
|
+
benchmark-perf (~> 0.6)
|
42
|
+
benchmark-trend (~> 0.4)
|
43
|
+
rspec (>= 3.0)
|
71
44
|
rspec-core (3.9.1)
|
72
45
|
rspec-support (~> 3.9.1)
|
73
46
|
rspec-expectations (3.9.1)
|
@@ -77,19 +50,19 @@ GEM
|
|
77
50
|
rspec-mocks (3.9.1)
|
78
51
|
diff-lcs (>= 1.2.0, < 2.0)
|
79
52
|
rspec-support (~> 3.9.0)
|
80
|
-
rspec-rails (3.9.1)
|
81
|
-
actionpack (>= 3.0)
|
82
|
-
activesupport (>= 3.0)
|
83
|
-
railties (>= 3.0)
|
84
|
-
rspec-core (~> 3.9.0)
|
85
|
-
rspec-expectations (~> 3.9.0)
|
86
|
-
rspec-mocks (~> 3.9.0)
|
87
|
-
rspec-support (~> 3.9.0)
|
88
53
|
rspec-support (3.9.2)
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
54
|
+
rubocop (0.88.0)
|
55
|
+
parallel (~> 1.10)
|
56
|
+
parser (>= 2.7.1.1)
|
57
|
+
rainbow (>= 2.2.2, < 4.0)
|
58
|
+
regexp_parser (>= 1.7)
|
59
|
+
rexml
|
60
|
+
rubocop-ast (>= 0.1.0, < 1.0)
|
61
|
+
ruby-progressbar (~> 1.7)
|
62
|
+
unicode-display_width (>= 1.4.0, < 2.0)
|
63
|
+
rubocop-ast (0.1.0)
|
64
|
+
parser (>= 2.7.0.1)
|
65
|
+
ruby-progressbar (1.10.1)
|
93
66
|
simplecov (0.16.1)
|
94
67
|
docile (~> 1.1)
|
95
68
|
json (>= 1.8, < 3)
|
@@ -99,24 +72,24 @@ GEM
|
|
99
72
|
term-ansicolor (1.7.1)
|
100
73
|
tins (~> 1.0)
|
101
74
|
thor (1.0.1)
|
102
|
-
thread_safe (0.3.6)
|
103
75
|
tins (1.24.1)
|
104
76
|
sync
|
105
|
-
|
106
|
-
thread_safe (~> 0.1)
|
107
|
-
zeitwerk (2.3.0)
|
77
|
+
unicode-display_width (1.7.0)
|
108
78
|
|
109
79
|
PLATFORMS
|
80
|
+
java
|
110
81
|
ruby
|
111
82
|
|
112
83
|
DEPENDENCIES
|
113
84
|
bundler (~> 2.0)
|
114
85
|
coveralls
|
115
86
|
mutils!
|
87
|
+
pre-commit
|
116
88
|
rake (~> 13.0)
|
89
|
+
rspec
|
90
|
+
rspec-benchmark
|
117
91
|
rspec-json_expectations
|
118
|
-
|
119
|
-
rspec-xml_helpers
|
92
|
+
rubocop
|
120
93
|
|
121
94
|
BUNDLED WITH
|
122
95
|
2.1.4
|