mutils 1.1.2 → 1.1.7
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/workflows/master.yml +25 -0
- data/.github/workflows/pr.yml +27 -0
- data/.github/workflows/release.yml +30 -0
- data/.jrubyrc +1 -0
- data/.travis.yml +28 -29
- data/CHANGELOG.md +29 -0
- data/Gemfile +3 -1
- data/Gemfile.lock +37 -29
- data/README.md +2 -1
- data/Version +1 -1
- data/gemdeploy.sh +2 -2
- data/lib/mutils/serialization/base_serializer.rb +1 -0
- data/lib/mutils/serialization/methods/main.rb +3 -5
- data/lib/mutils/version.rb +3 -1
- data/mutils.gemspec +0 -1
- data/package-lock.json +664 -370
- data/package.json +4 -4
- metadata +8 -4
data/package.json
CHANGED
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"@semantic-release/changelog": "^5.0.1",
|
|
14
14
|
"@semantic-release/exec": "^5.0.0",
|
|
15
15
|
"@semantic-release/git": "^9.0.0",
|
|
16
|
-
"@semantic-release/github": "^7.
|
|
17
|
-
"husky": "^4.3.
|
|
18
|
-
"lint-staged": "^10.
|
|
19
|
-
"semantic-release": "^17.
|
|
16
|
+
"@semantic-release/github": "^7.2.0",
|
|
17
|
+
"husky": "^4.3.8",
|
|
18
|
+
"lint-staged": "^10.5.3",
|
|
19
|
+
"semantic-release": "^17.3.7"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"copyfiles": "cp -r CHANGELOG.md dist/CHANGELOG.md && cp -r dist/package.json src/package.json",
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mutils
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nitesh Purohit
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-01-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: dry-inflector
|
|
@@ -66,8 +66,12 @@ files:
|
|
|
66
66
|
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
|
67
67
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
|
68
68
|
- ".github/dependabot.yml"
|
|
69
|
+
- ".github/workflows/master.yml"
|
|
70
|
+
- ".github/workflows/pr.yml"
|
|
71
|
+
- ".github/workflows/release.yml"
|
|
69
72
|
- ".gitignore"
|
|
70
73
|
- ".huskyrc"
|
|
74
|
+
- ".jrubyrc"
|
|
71
75
|
- ".rspec"
|
|
72
76
|
- ".rubocop.yml"
|
|
73
77
|
- ".rubocop_todo.yml"
|
|
@@ -110,7 +114,7 @@ licenses:
|
|
|
110
114
|
- MIT
|
|
111
115
|
metadata:
|
|
112
116
|
bug_tracker_uri: https://github.com/code-vedas/mutils/issues
|
|
113
|
-
source_code_uri: https://github.com/code-vedas/mutils/tree/v1.1.
|
|
117
|
+
source_code_uri: https://github.com/code-vedas/mutils/tree/v1.1.7
|
|
114
118
|
post_install_message:
|
|
115
119
|
rdoc_options: []
|
|
116
120
|
require_paths:
|
|
@@ -126,7 +130,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
126
130
|
- !ruby/object:Gem::Version
|
|
127
131
|
version: 1.8.11
|
|
128
132
|
requirements: []
|
|
129
|
-
rubygems_version: 3.
|
|
133
|
+
rubygems_version: 3.1.4
|
|
130
134
|
signing_key:
|
|
131
135
|
specification_version: 4
|
|
132
136
|
summary: mutils Utilities for rails app
|