active_attr 0.10.1 → 0.10.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of active_attr might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/CHANGELOG.md +5 -1
- data/active_attr.gemspec +1 -0
- data/lib/active_attr/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fc38343474bef39cccdcee47765454540c2b3d52
|
4
|
+
data.tar.gz: 93f27cc9bb856bfa1c3c486c79210f6653ede7f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab39b3050d848820a6985c6e1337e9b618a713cb0d5bd19107ee39ee021cb8dfcdb2f138f5754c0d874a57492eea8102aa0df42d96c45db26912ee9f6ad5fb1f
|
7
|
+
data.tar.gz: 25200ad18dc6536eac2829b30dbb9b88ef3e8ae503d75bdd1bcc6ad30555ad1fd634f9a0340d7306b5f4f3cc475a0ee82185ba4e16fdd9023cf2574852b4e928
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.4.
|
1
|
+
2.4.1
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
-
# ActiveAttr 0.10.
|
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) }
|
data/lib/active_attr/version.rb
CHANGED
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.
|
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-
|
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.
|
270
|
+
rubygems_version: 2.6.12
|
270
271
|
signing_key:
|
271
272
|
specification_version: 4
|
272
273
|
summary: What ActiveModel left out
|