rock_config 0.0.2 → 0.0.3
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.
- data/.travis.yml +10 -0
- data/README.md +1 -1
- data/lib/rock_config/version.rb +1 -1
- data/lib/rock_config/yaml_loader.rb +1 -1
- data/rock_config.gemspec +2 -1
- data/spec/config_spec.rb +1 -1
- data/spec/fixtures/database_invalid.yml +1 -8
- metadata +19 -2
data/.travis.yml
ADDED
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# RockConfig
|
1
|
+
# RockConfig [](http://travis-ci.org/mekishizufu/rock_config) [](https://codeclimate.com/github/mekishizufu/rock_config)
|
2
2
|
|
3
3
|
RockConfig is a simple convention based library for reading and accessing config files.
|
4
4
|
|
data/lib/rock_config/version.rb
CHANGED
data/rock_config.gemspec
CHANGED
@@ -6,7 +6,7 @@ Gem::Specification.new do |gem|
|
|
6
6
|
gem.email = ["mekishizufu@gmail.com"]
|
7
7
|
gem.summary = %q{RockConfig allows you to use custom config files easily.}
|
8
8
|
gem.description = %q{RockConfig allows you to use custom config files easily.}
|
9
|
-
gem.homepage = ""
|
9
|
+
gem.homepage = "https://github.com/mekishizufu/rock_config"
|
10
10
|
|
11
11
|
gem.files = `git ls-files`.split($\)
|
12
12
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
@@ -15,6 +15,7 @@ Gem::Specification.new do |gem|
|
|
15
15
|
gem.require_paths = ["lib"]
|
16
16
|
gem.version = RockConfig::VERSION
|
17
17
|
|
18
|
+
gem.add_development_dependency "rake", "~> 0.9.2"
|
18
19
|
gem.add_development_dependency "rspec", "~> 2.11.0"
|
19
20
|
gem.add_development_dependency "pry", "~> 0.9.10"
|
20
21
|
gem.add_development_dependency "pry-nav", "~> 0.2.2"
|
data/spec/config_spec.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rock_config
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -11,6 +11,22 @@ bindir: bin
|
|
11
11
|
cert_chain: []
|
12
12
|
date: 2012-11-03 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rake
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 0.9.2
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 0.9.2
|
14
30
|
- !ruby/object:Gem::Dependency
|
15
31
|
name: rspec
|
16
32
|
requirement: !ruby/object:Gem::Requirement
|
@@ -68,6 +84,7 @@ extra_rdoc_files: []
|
|
68
84
|
files:
|
69
85
|
- .gitignore
|
70
86
|
- .rspec
|
87
|
+
- .travis.yml
|
71
88
|
- Gemfile
|
72
89
|
- LICENSE
|
73
90
|
- README.md
|
@@ -92,7 +109,7 @@ files:
|
|
92
109
|
- spec/scanner_spec.rb
|
93
110
|
- spec/spec_helper.rb
|
94
111
|
- spec/yaml_loader_spec.rb
|
95
|
-
homepage:
|
112
|
+
homepage: https://github.com/mekishizufu/rock_config
|
96
113
|
licenses: []
|
97
114
|
post_install_message:
|
98
115
|
rdoc_options: []
|