random_attributes 0.0.1 → 0.0.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 +5 -5
- data/Rakefile +9 -0
- data/lib/random_attributes/version.rb +1 -1
- data/random_attributes.gemspec +2 -2
- metadata +7 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
SHA1:
|
|
3
|
-
metadata.gz: 0fb42eebf2719fd9e4eb30962ce7e4f22917ce2a
|
|
4
|
-
data.tar.gz: 315f87390f64da8c27f7a751b575d8a823f24f02
|
|
5
2
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 529081c0be1d7366a0bc3dcf49585a7e77707fa7e0c7741586355f3e786d9dfa9f919ac84a866c3896e30f8baad6708ba07b868516facf1f461f215dc8822c89
|
|
4
|
+
data.tar.gz: 762d72c4c5ad509e7b9591ce36a10e6d64243c05f85755cc37cbfdf867124887a83e28362217d8cbc63af2bb16ca8d75084a0c73b193696f8d30494ae35d7d77
|
|
5
|
+
SHA1:
|
|
6
|
+
metadata.gz: 100e18199af3a7651aa71ea5d6d3059f981dfc81
|
|
7
|
+
data.tar.gz: 67f92c41006bd4281ebfbbf72bc92e38cbc0777c
|
data/Rakefile
CHANGED
data/random_attributes.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["rufuspost@gmail.com"]
|
|
11
11
|
spec.description = %q{When someone gives you rubbish data an you want to map it to something else.}
|
|
12
12
|
spec.summary = %q{Data hash to object mapper}
|
|
13
|
-
spec.homepage = ""
|
|
13
|
+
spec.homepage = "https://github.com/frontfoot/random_attributes"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
|
|
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
19
|
spec.require_paths = ["lib"]
|
|
20
20
|
|
|
21
|
-
spec.
|
|
21
|
+
spec.add_runtime_dependency "activesupport", [">= 3.0", ">= 4.0"]
|
|
22
22
|
|
|
23
23
|
spec.add_development_dependency "bundler", "~> 1.3"
|
|
24
24
|
spec.add_development_dependency "rake"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: random_attributes
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rufus Post
|
|
@@ -9,16 +9,19 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2013-12-
|
|
12
|
+
date: 2013-12-17 00:00:00 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
|
-
name:
|
|
15
|
+
name: activesupport
|
|
16
16
|
prerelease: false
|
|
17
17
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
18
18
|
requirements:
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
21
|
version: "3.0"
|
|
22
|
+
- - ">="
|
|
23
|
+
- !ruby/object:Gem::Version
|
|
24
|
+
version: "4.0"
|
|
22
25
|
type: :runtime
|
|
23
26
|
version_requirements: *id001
|
|
24
27
|
- !ruby/object:Gem::Dependency
|
|
@@ -81,7 +84,7 @@ files:
|
|
|
81
84
|
- random_attributes.gemspec
|
|
82
85
|
- spec/random_attributes_spec.rb
|
|
83
86
|
- spec/spec_helper.rb
|
|
84
|
-
homepage:
|
|
87
|
+
homepage: https://github.com/frontfoot/random_attributes
|
|
85
88
|
licenses:
|
|
86
89
|
- MIT
|
|
87
90
|
metadata: {}
|