configutron 0.4.0 → 0.4.1
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/Rakefile +5 -15
- data/VERSION +1 -1
- data/configutron.gemspec +67 -0
- data/lib/configutron.rb +2 -1
- data/lib/{core_ext.rb → configutron/core_ext.rb} +0 -0
- data/rails/init.rb +0 -1
- metadata +9 -7
data/Rakefile
CHANGED
|
@@ -14,21 +14,11 @@ begin
|
|
|
14
14
|
gem.add_runtime_dependency "activesupport", ">= 0"
|
|
15
15
|
gem.add_development_dependency "rspec", ">= 1.2.9"
|
|
16
16
|
gem.add_development_dependency "fakefs", ">= 0.2.1"
|
|
17
|
-
|
|
18
|
-
gem.files
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"Rakefile",
|
|
23
|
-
"VERSION",
|
|
24
|
-
"lib/configutron.rb",
|
|
25
|
-
"lib/core_ext.rb",
|
|
26
|
-
"rails/init.rb",
|
|
27
|
-
"spec/configutron_spec.rb",
|
|
28
|
-
"spec/spec.opts",
|
|
29
|
-
"spec/spec_helper.rb",
|
|
30
|
-
"spec/fake_yml_files.rb"
|
|
31
|
-
]
|
|
17
|
+
|
|
18
|
+
gem.files = `git ls-files`.split("\n")
|
|
19
|
+
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
20
|
+
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
21
|
+
gem.require_paths = ["lib"]
|
|
32
22
|
end
|
|
33
23
|
Jeweler::GemcutterTasks.new
|
|
34
24
|
rescue LoadError
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.1
|
data/configutron.gemspec
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{configutron}
|
|
8
|
+
s.version = "0.4.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Neal Clark"]
|
|
12
|
+
s.date = %q{2010-11-06}
|
|
13
|
+
s.description = %q{simple app-wide settings for rails applications}
|
|
14
|
+
s.email = %q{nclark@thrownproject.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.markdown"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".gitignore",
|
|
21
|
+
"LICENSE",
|
|
22
|
+
"README.markdown",
|
|
23
|
+
"Rakefile",
|
|
24
|
+
"VERSION",
|
|
25
|
+
"configutron.gemspec",
|
|
26
|
+
"lib/configutron.rb",
|
|
27
|
+
"lib/configutron/core_ext.rb",
|
|
28
|
+
"rails/init.rb",
|
|
29
|
+
"spec/configutron_spec.rb",
|
|
30
|
+
"spec/fake_yml_files.rb",
|
|
31
|
+
"spec/spec.opts",
|
|
32
|
+
"spec/spec_helper.rb"
|
|
33
|
+
]
|
|
34
|
+
s.homepage = %q{http://github.com/nclark/configutron}
|
|
35
|
+
s.require_paths = ["lib"]
|
|
36
|
+
s.rubygems_version = %q{1.3.7}
|
|
37
|
+
s.summary = %q{simple app-wide settings for rails apps}
|
|
38
|
+
s.test_files = [
|
|
39
|
+
"spec/configutron_spec.rb",
|
|
40
|
+
"spec/fake_yml_files.rb",
|
|
41
|
+
"spec/spec.opts",
|
|
42
|
+
"spec/spec_helper.rb"
|
|
43
|
+
]
|
|
44
|
+
|
|
45
|
+
if s.respond_to? :specification_version then
|
|
46
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
47
|
+
s.specification_version = 3
|
|
48
|
+
|
|
49
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
50
|
+
s.add_runtime_dependency(%q<activesupport>, [">= 0"])
|
|
51
|
+
s.add_runtime_dependency(%q<activesupport>, [">= 0"])
|
|
52
|
+
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
|
|
53
|
+
s.add_development_dependency(%q<fakefs>, [">= 0.2.1"])
|
|
54
|
+
else
|
|
55
|
+
s.add_dependency(%q<activesupport>, [">= 0"])
|
|
56
|
+
s.add_dependency(%q<activesupport>, [">= 0"])
|
|
57
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
|
58
|
+
s.add_dependency(%q<fakefs>, [">= 0.2.1"])
|
|
59
|
+
end
|
|
60
|
+
else
|
|
61
|
+
s.add_dependency(%q<activesupport>, [">= 0"])
|
|
62
|
+
s.add_dependency(%q<activesupport>, [">= 0"])
|
|
63
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
|
64
|
+
s.add_dependency(%q<fakefs>, [">= 0.2.1"])
|
|
65
|
+
end
|
|
66
|
+
end
|
|
67
|
+
|
data/lib/configutron.rb
CHANGED
|
File without changes
|
data/rails/init.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: configutron
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 13
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 4
|
|
9
|
-
-
|
|
10
|
-
version: 0.4.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.4.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Neal Clark
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-
|
|
18
|
+
date: 2010-11-06 00:00:00 -07:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -93,8 +93,9 @@ files:
|
|
|
93
93
|
- README.markdown
|
|
94
94
|
- Rakefile
|
|
95
95
|
- VERSION
|
|
96
|
+
- configutron.gemspec
|
|
96
97
|
- lib/configutron.rb
|
|
97
|
-
- lib/core_ext.rb
|
|
98
|
+
- lib/configutron/core_ext.rb
|
|
98
99
|
- rails/init.rb
|
|
99
100
|
- spec/configutron_spec.rb
|
|
100
101
|
- spec/fake_yml_files.rb
|
|
@@ -105,8 +106,8 @@ homepage: http://github.com/nclark/configutron
|
|
|
105
106
|
licenses: []
|
|
106
107
|
|
|
107
108
|
post_install_message:
|
|
108
|
-
rdoc_options:
|
|
109
|
-
|
|
109
|
+
rdoc_options: []
|
|
110
|
+
|
|
110
111
|
require_paths:
|
|
111
112
|
- lib
|
|
112
113
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
@@ -137,4 +138,5 @@ summary: simple app-wide settings for rails apps
|
|
|
137
138
|
test_files:
|
|
138
139
|
- spec/configutron_spec.rb
|
|
139
140
|
- spec/fake_yml_files.rb
|
|
141
|
+
- spec/spec.opts
|
|
140
142
|
- spec/spec_helper.rb
|