yml_object 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 +4 -4
- data/README.md +2 -2
- data/lib/yml_object/version.rb +1 -1
- data/yml_object.gemspec +3 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 84324bfc3d17257959c955a8781fe54319cf1eca
|
|
4
|
+
data.tar.gz: c9251c739f15691c768caf636aae6a6daf79ebc3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f89e806ec21a82fa63045a73ea87da2867882e431ddf0953e8bef16aa2862f9afb4dc8ece3eea125230e838ad01588468586f3170f357838bf49c24c82e9c1c8
|
|
7
|
+
data.tar.gz: 0c946cb8948595ea20c4338aaca82349a6bde7e5fd00729707404925c7ad9fcca7f9739ee3e0f86bce276707514fd565b5805d4fc33367afe77b5b31b370ee27
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# YmlObject
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Read a Yml file, use it like an object.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -20,7 +20,7 @@ Or install it yourself as:
|
|
|
20
20
|
|
|
21
21
|
## Usage
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
See the rspec test
|
|
24
24
|
|
|
25
25
|
## Contributing
|
|
26
26
|
|
data/lib/yml_object/version.rb
CHANGED
data/yml_object.gemspec
CHANGED
|
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = YmlObject::VERSION
|
|
9
9
|
spec.authors = ["Jason Heylon"]
|
|
10
10
|
spec.email = ["jasonheylon@gmail.com"]
|
|
11
|
-
spec.summary = %q{Load YML file
|
|
12
|
-
spec.description = %q{Load YML file
|
|
11
|
+
spec.summary = %q{Load YML file, use it like an object}
|
|
12
|
+
spec.description = %q{Load YML file, use it like an object}
|
|
13
13
|
spec.homepage = ""
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
@@ -17,6 +17,7 @@ Gem::Specification.new do |spec|
|
|
|
17
17
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
19
|
spec.require_paths = ["lib"]
|
|
20
|
+
spec.required_ruby_version = '>= 1.9.3'
|
|
20
21
|
|
|
21
22
|
spec.add_development_dependency "bundler", "~> 1.7"
|
|
22
23
|
spec.add_development_dependency "rake", "~> 10.0"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yml_object
|
|
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
|
- Jason Heylon
|
|
@@ -52,7 +52,7 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: 3.2.0
|
|
55
|
-
description: Load YML file
|
|
55
|
+
description: Load YML file, use it like an object
|
|
56
56
|
email:
|
|
57
57
|
- jasonheylon@gmail.com
|
|
58
58
|
executables: []
|
|
@@ -83,7 +83,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
83
83
|
requirements:
|
|
84
84
|
- - ">="
|
|
85
85
|
- !ruby/object:Gem::Version
|
|
86
|
-
version:
|
|
86
|
+
version: 1.9.3
|
|
87
87
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
88
|
requirements:
|
|
89
89
|
- - ">="
|
|
@@ -94,7 +94,7 @@ rubyforge_project:
|
|
|
94
94
|
rubygems_version: 2.4.5
|
|
95
95
|
signing_key:
|
|
96
96
|
specification_version: 4
|
|
97
|
-
summary: Load YML file
|
|
97
|
+
summary: Load YML file, use it like an object
|
|
98
98
|
test_files:
|
|
99
99
|
- spec/spec_helper.rb
|
|
100
100
|
- spec/yml_object_spec.rb
|