configutron 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
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
- ".gitignore",
20
- "LICENSE",
21
- "README.markdown",
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.0
1
+ 0.4.1
@@ -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
+
@@ -1,7 +1,8 @@
1
1
  require 'yaml'
2
2
  require 'ostruct'
3
3
  require 'erb'
4
- require 'core_ext'
4
+
5
+ require File.expand_path(File.join(File.dirname(__FILE__), 'configutron', 'core_ext'))
5
6
 
6
7
  module Configutron
7
8
  extend self
@@ -1,2 +1 @@
1
- require "core_ext"
2
1
  require "configutron"
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: 15
4
+ hash: 13
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 4
9
- - 0
10
- version: 0.4.0
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-08-07 00:00:00 -07:00
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
- - --charset=UTF-8
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