configster 0.0.3 → 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 66d91500171b5ec4bf72d4f3f6ab148744ffda71d9fd6aa283414aa171883c8e
4
+ data.tar.gz: 6983600628bf7c1b888f61583e80940e7bd78e3d9771b981d9a8ab6c528e295c
5
+ SHA512:
6
+ metadata.gz: 494c44c54437824119dde9bb25476d6c8bb203f3ddbb1fb6ce15b3044620e2aa1be1208b610a5f47441c3cf3eaa79f8b19d91d5242bc668b575b9b4eedf8047d
7
+ data.tar.gz: 46786200508ca5c0de3f3783c838a5ee3defb69f093ecdb1fdf1b1da4d9ab843bff757d11b145e6a37ba0ab58e64b30e73e86bed7aca9d4621cda163194818b2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # Change Log
2
+
3
+ ## 0.1.0 (March 6, 2025)
4
+
5
+ - Added support for Ruby 3.2
6
+ - Ruby 2.1 is now the minimum supported version
7
+
1
8
  ## 0.0.3 (November 12, 2012)
2
9
 
3
10
  Features:
@@ -19,4 +26,4 @@ Documentation:
19
26
 
20
27
  - Fixed a "bug" in the README.
21
28
  - Added a note about accessing Configster directly.
22
- - Added additional notes that reference the examples directory.
29
+ - Added additional notes that reference the examples directory.
data/README.md CHANGED
@@ -54,7 +54,7 @@ First, make yourself a nice little configuration file and save it to `~/my_sweet
54
54
  Then, you'll write your application like this:
55
55
 
56
56
  require 'configster'
57
- Configster.load!('File.expand_path(~/my_sweet_app_credentials.yml'))
57
+ Configster.load!(File.expand_path('~/my_sweet_app_credentials.yml'))
58
58
 
59
59
  class MySweetApp
60
60
 
data/configster.gemspec CHANGED
@@ -16,8 +16,10 @@ Gem::Specification.new do |gem|
16
16
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
17
17
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
18
  gem.require_paths = ["lib"]
19
-
19
+
20
20
  gem.add_development_dependency('rspec')
21
21
  gem.add_development_dependency('ZenTest')
22
-
22
+
23
+ gem.required_ruby_version = ">= 2.1.0"
24
+
23
25
  end
@@ -41,7 +41,7 @@ module Configster
41
41
  Dir.glob(File.join(configster_config, "*.yml")).each do |file|
42
42
  @configster_config.merge!(YAML.load_file(file))
43
43
  end
44
- elsif File.exists?(configster_config)
44
+ elsif File.exist?(configster_config)
45
45
  @configster_config.merge!(YAML.load_file(configster_config))
46
46
  else
47
47
  raise "Unable to locate #{configster_config}"
@@ -1,3 +1,3 @@
1
1
  module Configster
2
- VERSION = "0.0.3"
2
+ VERSION = "0.1.0"
3
3
  end
metadata CHANGED
@@ -1,46 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: configster
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
5
- prerelease:
4
+ version: 0.1.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Patrick Tulskie
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-11-12 00:00:00.000000000 Z
11
+ date: 2025-03-04 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rspec
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: '0'
22
20
  type: :development
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: '0'
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: ZenTest
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - ">="
36
32
  - !ruby/object:Gem::Version
37
33
  version: '0'
38
34
  type: :development
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - ">="
44
39
  - !ruby/object:Gem::Version
45
40
  version: '0'
46
41
  description: Configster is a tidy little configuration management utility for your
@@ -52,7 +47,7 @@ executables: []
52
47
  extensions: []
53
48
  extra_rdoc_files: []
54
49
  files:
55
- - .gitignore
50
+ - ".gitignore"
56
51
  - CHANGELOG.md
57
52
  - Gemfile
58
53
  - LICENSE.txt
@@ -72,27 +67,25 @@ files:
72
67
  - spec/spec_helper.rb
73
68
  homepage: https://github.com/PatrickTulskie/configster
74
69
  licenses: []
70
+ metadata: {}
75
71
  post_install_message:
76
72
  rdoc_options: []
77
73
  require_paths:
78
74
  - lib
79
75
  required_ruby_version: !ruby/object:Gem::Requirement
80
- none: false
81
76
  requirements:
82
- - - ! '>='
77
+ - - ">="
83
78
  - !ruby/object:Gem::Version
84
- version: '0'
79
+ version: 2.1.0
85
80
  required_rubygems_version: !ruby/object:Gem::Requirement
86
- none: false
87
81
  requirements:
88
- - - ! '>='
82
+ - - ">="
89
83
  - !ruby/object:Gem::Version
90
84
  version: '0'
91
85
  requirements: []
92
- rubyforge_project:
93
- rubygems_version: 1.8.24
86
+ rubygems_version: 3.0.3.1
94
87
  signing_key:
95
- specification_version: 3
88
+ specification_version: 4
96
89
  summary: Configster keeps your configuration out of your application.
97
90
  test_files:
98
91
  - spec/configster_spec.rb