active_attr 0.10.1 → 0.10.2

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: e3793c0c881848e32880223f8442e82dd093b167
4
- data.tar.gz: 21ab8a818245c985aa1141002ff35a2b9bb11175
3
+ metadata.gz: fc38343474bef39cccdcee47765454540c2b3d52
4
+ data.tar.gz: 93f27cc9bb856bfa1c3c486c79210f6653ede7f4
5
5
  SHA512:
6
- metadata.gz: 184593386d4df4713b9fb418cf92fff8db026597db99ed119d1bd30a93042cb1064a6aa8d8304b2f36724348386d6cf8bff7654d1b94df196ad255d7e78bec4c
7
- data.tar.gz: 2c342a5a9d443b710387e725fe297b0b3255edfaf1f4f8932621a56306359e2863c22666df2290a9877def5f5dc8e6d89979c25eb94297a65d8866627f37ac3b
6
+ metadata.gz: ab39b3050d848820a6985c6e1337e9b618a713cb0d5bd19107ee39ee021cb8dfcdb2f138f5754c0d874a57492eea8102aa0df42d96c45db26912ee9f6ad5fb1f
7
+ data.tar.gz: 25200ad18dc6536eac2829b30dbb9b88ef3e8ae503d75bdd1bcc6ad30555ad1fd634f9a0340d7306b5f4f3cc475a0ee82185ba4e16fdd9023cf2574852b4e928
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.4.0
1
+ 2.4.1
data/CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
- # ActiveAttr 0.10.1 (February 7, 2017) #
1
+ # ActiveAttr 0.10.2 (July 21, 2017) #
2
+
3
+ * Add the license to the gemspec (Koichi ITO)
4
+
5
+ # ActiveAttr 0.10.1 (May 4, 2017) #
2
6
 
3
7
  * Documentation and test updates for Ruby 2.4 deprecating Fixnum
4
8
  * ActiveAttr now supports Rails 5.1
data/active_attr.gemspec CHANGED
@@ -7,6 +7,7 @@ Gem::Specification.new do |gem|
7
7
  gem.description = %q{Create plain old ruby models without reinventing the wheel.}
8
8
  gem.summary = %q{What ActiveModel left out}
9
9
  gem.homepage = "https://github.com/cgriego/active_attr"
10
+ gem.license = "MIT"
10
11
 
11
12
  gem.files = `git ls-files`.split($\)
12
13
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
@@ -1,5 +1,5 @@
1
1
  module ActiveAttr
2
2
  # Complete version string
3
3
  # @since 0.1.0
4
- VERSION = "0.10.1"
4
+ VERSION = "0.10.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_attr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.1
4
+ version: 0.10.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Griego
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-05-04 00:00:00.000000000 Z
12
+ date: 2017-07-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activemodel
@@ -248,7 +248,8 @@ files:
248
248
  - spec/unit/active_attr/unknown_attribute_error_spec.rb
249
249
  - spec/unit/active_attr/version_spec.rb
250
250
  homepage: https://github.com/cgriego/active_attr
251
- licenses: []
251
+ licenses:
252
+ - MIT
252
253
  metadata: {}
253
254
  post_install_message:
254
255
  rdoc_options: []
@@ -266,7 +267,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
266
267
  version: '0'
267
268
  requirements: []
268
269
  rubyforge_project:
269
- rubygems_version: 2.6.10
270
+ rubygems_version: 2.6.12
270
271
  signing_key:
271
272
  specification_version: 4
272
273
  summary: What ActiveModel left out