configfile 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 77e9061481542e0a746cf04fafdc57745805bbf5
4
- data.tar.gz: 6fda6e7c9c5daacb9bdf6cff73261b4236defe1e
3
+ metadata.gz: daef9b89aec9fb5dc8acd1d1479d56d984f5855f
4
+ data.tar.gz: 00537d340b60d8b972a1f89c5760e90843b6558d
5
5
  SHA512:
6
- metadata.gz: 0c027e84353e2af958c2bd4a770e73b80b173c5b6da09f267792d83408189ae9c510786a9aee954a7c893e655b872c0bbe2ed35b2638d900e04decd20d48c681
7
- data.tar.gz: 9429c60f2f517b135af4cdc9d47bb3cddb386a8369f88632a7a80fe36279f8e6c2d47fbff30935990d9cab05161e5a9fd8122b816ecbd7575733dd190b67bcc7
6
+ metadata.gz: 39f664424466878bc781353ed7b74f64a36f4c0080624ac10aa11d55ec86befbbe55fd2aeacd7529ed2b0edee7f61dff6583645d9a8f18c2d645fbc530a5da01
7
+ data.tar.gz: 2a372c505f23f24823a54fcbe0bee7bced4cea623293c2c526a6a5895cebdf3f1c926d2e1164e7ac5253824866329a441ecb4454bff600cd3934a710e3aa215b
data/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2015 Jaci R Brunning
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Jaci R Brunning
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -1,7 +1,7 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'configfile/version'
4
+ require 'configfile'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "configfile"
@@ -1,8 +1,8 @@
1
- require "configfile/version"
2
1
  require "yaml"
3
2
  require "json"
4
3
 
5
4
  class ConfigFile < Hash
5
+ VERSION = "0.2.0"
6
6
 
7
7
  def initialize filename, defaults={}, form=:yaml
8
8
  @filename = filename
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: configfile
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jaci Brunning
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-17 00:00:00.000000000 Z
11
+ date: 2015-09-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -64,7 +64,6 @@ files:
64
64
  - Rakefile
65
65
  - configfile.gemspec
66
66
  - lib/configfile.rb
67
- - lib/configfile/version.rb
68
67
  homepage: http://www.github.com/JacisNonsense/ConfigFile
69
68
  licenses: []
70
69
  metadata: {}
@@ -1,3 +0,0 @@
1
- module ConfigFile
2
- VERSION = "0.1.0"
3
- end