sinclair 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +1 -1
- data/README.md +7 -1
- data/lib/sinclair/version.rb +1 -1
- data/sinclair.gemspec +1 -1
- data/spec/support/models/my_builder.rb +3 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5d1b06127b9390b635b3f51e208b4e0e327e37bf3a983975256c998746c19ef
|
4
|
+
data.tar.gz: c9ef323396888f3adbf13b1f2147856987c0ffb4f4ea05e8419f0440f2445c25
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a70f4147f03c3ef11467af1c5de31c4fa446368496126ce588875016cbbac17287f3c736c7d040b42e5f6cbff797cdfb1b5002db4475451541114486a554b14e
|
7
|
+
data.tar.gz: 824f2cf65e9442e002b8010e4ed2f2ba3228043cba122358538aa497cc0015b1ea64a6acac1bce68f8f321d1c1c624ce27e97030775554bca9b33ec55da76671
|
data/.rubocop.yml
CHANGED
data/README.md
CHANGED
@@ -12,7 +12,7 @@ This gem helps the creation of complex concern with class methods
|
|
12
12
|
|
13
13
|
Yard Documentation
|
14
14
|
-------------------
|
15
|
-
https://www.rubydoc.info/gems/sinclair/1.2.
|
15
|
+
https://www.rubydoc.info/gems/sinclair/1.2.1
|
16
16
|
|
17
17
|
Installation
|
18
18
|
---------------
|
@@ -248,3 +248,9 @@ DefaultValue
|
|
248
248
|
should add method 'the_method' to #<Class:0x0000000143a1b0> instances
|
249
249
|
|
250
250
|
```
|
251
|
+
|
252
|
+
Projects Using
|
253
|
+
---------------
|
254
|
+
|
255
|
+
- [Arstotzka](https://github.com/darthjee/arstotzka)
|
256
|
+
|
data/lib/sinclair/version.rb
CHANGED
data/sinclair.gemspec
CHANGED
@@ -12,7 +12,7 @@ Gem::Specification.new do |gem|
|
|
12
12
|
gem.homepage = 'https://github.com/darthjee/sinclair'
|
13
13
|
gem.description = 'Gem for easy concern creation'
|
14
14
|
gem.summary = gem.description
|
15
|
-
gem.required_ruby_version = '>= 2.
|
15
|
+
gem.required_ruby_version = '>= 2.5.0'
|
16
16
|
|
17
17
|
gem.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
|
18
18
|
gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sinclair
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- DarthJee
|
@@ -221,7 +221,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
221
221
|
requirements:
|
222
222
|
- - ">="
|
223
223
|
- !ruby/object:Gem::Version
|
224
|
-
version: 2.
|
224
|
+
version: 2.5.0
|
225
225
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
226
226
|
requirements:
|
227
227
|
- - ">="
|