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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ba0a6d8447f1a10a062f57853bae360aa8030ee9
4
- data.tar.gz: 9e5e1b12b2886190d949c927bb57c35c1eb6bb9b
3
+ metadata.gz: 84324bfc3d17257959c955a8781fe54319cf1eca
4
+ data.tar.gz: c9251c739f15691c768caf636aae6a6daf79ebc3
5
5
  SHA512:
6
- metadata.gz: 9336c3b6bcdf4af31894f1b0e73e75d444cac302240320ae4fa03fc1abd1c8d24ea920d36caa4e9ad7f3bf97f99e4af68985c4a3617d52ae75c1a5e1536a0d5c
7
- data.tar.gz: 5336097f2d710df20fc083c00392f6f48ea7db30147fd2047a0f6e1eeca43ce99d64c12a14c56074293af2ea5250a8c1cd9aa0e15dd8dc884398f52d2979aff5
6
+ metadata.gz: f89e806ec21a82fa63045a73ea87da2867882e431ddf0953e8bef16aa2862f9afb4dc8ece3eea125230e838ad01588468586f3170f357838bf49c24c82e9c1c8
7
+ data.tar.gz: 0c946cb8948595ea20c4338aaca82349a6bde7e5fd00729707404925c7ad9fcca7f9739ee3e0f86bce276707514fd565b5805d4fc33367afe77b5b31b370ee27
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # YmlObject
2
2
 
3
- TODO: Write a gem description
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
- TODO: Write usage instructions here
23
+ See the rspec test
24
24
 
25
25
  ## Contributing
26
26
 
@@ -1,3 +1,3 @@
1
1
  module YmlObject
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
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 to a object}
12
- spec.description = %q{Load YML file to a object}
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.1
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 to a object
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: '0'
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 to a object
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