keyword_init 1.0.0 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 018ffb118d8fdf0ffb546b8521f8f6b27e34c87e
4
- data.tar.gz: 73f5d005d2a422553405a0cc882520e5633592d2
3
+ metadata.gz: 2d41fcb45d95a3e6c459953b2e651266fbd21199
4
+ data.tar.gz: 377a398cedcc3ef9b0a59f049f7c0ea96a5a384e
5
5
  SHA512:
6
- metadata.gz: 52398c7af6ce1dbca0588c7879af0bb7af5b8e1c60206f55b3d80a7118d5c951c44553c901df304553ea0138369a603eb5269eda2d74be07c4a5b21e84591bba
7
- data.tar.gz: fc00638b5347138a327e17c8a160a108c25a9828295aa42cde62e82c2c06ca1208e84e9023382d4653d88980a2eafdf54aa2ce0be96930755da8ad927117212d
6
+ metadata.gz: 1d9e8a8a81bab55f3b091e710ac3e788267440caf094b0021456912c70d25bd5a459fb11a4425cf263bfb7ea1e9daaf9133b9d1c9e8d7465f47442484608bada
7
+ data.tar.gz: 314599f14c952ce238245dd85ea83d1b90024ff110e18977a5c02ffca8b487a86b98d6728a26614a54271a87ac4d270390576f2f7ae418d5eaeb049c22af0f42
data/README.md CHANGED
@@ -45,7 +45,7 @@ end
45
45
  o = TestKlass.new attrib: 1, writeonly: 2, readonly: 3
46
46
  x.attrib # => 1
47
47
 
48
- # did not set the value because there are no `readonly=` method
48
+ # did not set the value because there is no `readonly=` method
49
49
  x.readonly # => nil
50
50
 
51
51
  x.my_data # => {attrib: 1, writeonly: 2, readonly: nil}
data/keyword_init.gemspec CHANGED
@@ -4,19 +4,19 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
  require 'keyword_init/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
- spec.name = "keyword_init"
8
- spec.version = KeywordInit::VERSION
9
- spec.authors = ["Eduardo Turiño"]
10
- spec.email = ["eturino@eturino.com"]
11
- spec.summary = %q{Gem that provides a keyword argument based initialize method to a class, executing the setter of all the recognised keywords.}
7
+ spec.name = "keyword_init"
8
+ spec.version = KeywordInit::VERSION
9
+ spec.authors = ["Eduardo Turiño"]
10
+ spec.email = ["eturino@eturino.com"]
11
+ spec.summary = %q{Gem that provides a keyword argument based initialize method to a class, executing the setter of all the recognised keywords.}
12
12
  # spec.description = %q{TODO: Write a longer description. Optional.}
13
- spec.homepage = ""
14
- spec.license = "MIT"
15
-
16
- spec.files = `git ls-files -z`.split("\x0")
17
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
- spec.require_paths = ["lib"]
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+ spec.files = `git ls-files -z`.split("\x0")
16
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
+ spec.require_paths = ["lib"]
19
+ spec.required_ruby_version = '>= 2.1'
20
20
 
21
21
  spec.add_development_dependency "bundler", "~> 1.6"
22
22
  spec.add_development_dependency "rake"
@@ -1,3 +1,3 @@
1
1
  module KeywordInit
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: keyword_init
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eduardo Turiño
@@ -167,7 +167,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
167
167
  requirements:
168
168
  - - ">="
169
169
  - !ruby/object:Gem::Version
170
- version: '0'
170
+ version: '2.1'
171
171
  required_rubygems_version: !ruby/object:Gem::Requirement
172
172
  requirements:
173
173
  - - ">="