attrio 0.7.0 → 0.7.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 +4 -4
- data/attrio.gemspec +2 -1
- data/lib/attrio/attribute.rb +1 -1
- data/lib/attrio/version.rb +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f38f08eb9c96c9bc68668f4b28bacece08cd119b
|
|
4
|
+
data.tar.gz: 982476ccb901dc19c20c37f8f1509d5614ebda47
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ccb357e02fcadfde2302b69f4c773379c75a980631cda62d043d2e4d1ffa12afd43417e09bea001c6826bffdd44a1f41193776f0130546850351e6b88e47eb88
|
|
7
|
+
data.tar.gz: 8649db1c408b5db579bd4cc8775d642dbe71056e0ea7095b00587f8fa3089fe8b59bf0527305317b1ba0b18814f182ce391ff6fce756ec3eda2470c434c45c32
|
data/attrio.gemspec
CHANGED
|
@@ -7,10 +7,11 @@ require 'attrio/version'
|
|
|
7
7
|
Gem::Specification.new do |gem|
|
|
8
8
|
gem.name = "attrio"
|
|
9
9
|
gem.version = Attrio::Version::STRING
|
|
10
|
-
gem.authors = ['Igor Alexandrov', 'Julia Egorova']
|
|
10
|
+
gem.authors = ['Igor Alexandrov', 'Julia Egorova']
|
|
11
11
|
gem.email = 'hello@jetrockets.ru'
|
|
12
12
|
gem.summary = "Attributes for plain old Ruby objects. No dependencies, only simplicity and clearness."
|
|
13
13
|
gem.homepage = "https://github.com/jetrockets/attrio"
|
|
14
|
+
gem.licenses = ['MIT']
|
|
14
15
|
|
|
15
16
|
gem.files = `git ls-files`.split($/)
|
|
16
17
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
data/lib/attrio/attribute.rb
CHANGED
data/lib/attrio/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: attrio
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Igor Alexandrov
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-11-
|
|
12
|
+
date: 2013-11-17 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rspec
|
|
@@ -172,7 +172,8 @@ files:
|
|
|
172
172
|
- spec/unit/types/symbol_spec.rb
|
|
173
173
|
- spec/unit/types/time_spec.rb
|
|
174
174
|
homepage: https://github.com/jetrockets/attrio
|
|
175
|
-
licenses:
|
|
175
|
+
licenses:
|
|
176
|
+
- MIT
|
|
176
177
|
metadata: {}
|
|
177
178
|
post_install_message:
|
|
178
179
|
rdoc_options: []
|
|
@@ -190,7 +191,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
190
191
|
version: '0'
|
|
191
192
|
requirements: []
|
|
192
193
|
rubyforge_project:
|
|
193
|
-
rubygems_version: 2.0.
|
|
194
|
+
rubygems_version: 2.0.3
|
|
194
195
|
signing_key:
|
|
195
196
|
specification_version: 4
|
|
196
197
|
summary: Attributes for plain old Ruby objects. No dependencies, only simplicity and
|
|
@@ -216,3 +217,4 @@ test_files:
|
|
|
216
217
|
- spec/unit/types/integer_spec.rb
|
|
217
218
|
- spec/unit/types/symbol_spec.rb
|
|
218
219
|
- spec/unit/types/time_spec.rb
|
|
220
|
+
has_rdoc:
|