pwim-app_config 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION.yml +1 -1
- data/app_config.gemspec +4 -6
- metadata +4 -5
- data/rails/init.rb +0 -4
data/VERSION.yml
CHANGED
data/app_config.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{app_config}
|
8
|
-
s.version = "1.0.
|
8
|
+
s.version = "1.0.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Christopher J Bottaro"]
|
12
|
-
s.date = %q{2009-08-
|
12
|
+
s.date = %q{2009-08-27}
|
13
13
|
s.description = %q{Application level configuration that supports YAML config file, inheritance, ERB, and object member notation.}
|
14
14
|
s.email = %q{cjbottaro@alumni.cs.utexas.edu}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -25,7 +25,6 @@ Gem::Specification.new do |s|
|
|
25
25
|
"install.rb",
|
26
26
|
"lib/app_config.rb",
|
27
27
|
"lib/closed_struct.rb",
|
28
|
-
"rails/init.rb",
|
29
28
|
"tasks/app_config_tasks.rake",
|
30
29
|
"test/app_config.yml",
|
31
30
|
"test/app_config_test.rb",
|
@@ -35,11 +34,10 @@ Gem::Specification.new do |s|
|
|
35
34
|
"test/empty2.yml",
|
36
35
|
"uninstall.rb"
|
37
36
|
]
|
38
|
-
s.has_rdoc = true
|
39
37
|
s.homepage = %q{http://github.com/cjbottaro/app_config}
|
40
38
|
s.rdoc_options = ["--charset=UTF-8"]
|
41
39
|
s.require_paths = ["lib"]
|
42
|
-
s.rubygems_version = %q{1.3.
|
40
|
+
s.rubygems_version = %q{1.3.3}
|
43
41
|
s.summary = %q{Application level configuration.}
|
44
42
|
s.test_files = [
|
45
43
|
"test/app_config_test.rb",
|
@@ -48,7 +46,7 @@ Gem::Specification.new do |s|
|
|
48
46
|
|
49
47
|
if s.respond_to? :specification_version then
|
50
48
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
51
|
-
s.specification_version =
|
49
|
+
s.specification_version = 3
|
52
50
|
|
53
51
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
54
52
|
else
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pwim-app_config
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christopher J Bottaro
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-08-
|
12
|
+
date: 2009-08-27 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -31,7 +31,6 @@ files:
|
|
31
31
|
- install.rb
|
32
32
|
- lib/app_config.rb
|
33
33
|
- lib/closed_struct.rb
|
34
|
-
- rails/init.rb
|
35
34
|
- tasks/app_config_tasks.rake
|
36
35
|
- test/app_config.yml
|
37
36
|
- test/app_config_test.rb
|
@@ -40,7 +39,7 @@ files:
|
|
40
39
|
- test/empty1.yml
|
41
40
|
- test/empty2.yml
|
42
41
|
- uninstall.rb
|
43
|
-
has_rdoc:
|
42
|
+
has_rdoc: false
|
44
43
|
homepage: http://github.com/cjbottaro/app_config
|
45
44
|
licenses:
|
46
45
|
post_install_message:
|
@@ -65,7 +64,7 @@ requirements: []
|
|
65
64
|
rubyforge_project:
|
66
65
|
rubygems_version: 1.3.5
|
67
66
|
signing_key:
|
68
|
-
specification_version:
|
67
|
+
specification_version: 3
|
69
68
|
summary: Application level configuration.
|
70
69
|
test_files:
|
71
70
|
- test/app_config_test.rb
|
data/rails/init.rb
DELETED