simple_app_config 0.1.2 → 0.1.21

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -6,7 +6,7 @@ begin
6
6
  Jeweler::Tasks.new do |gem|
7
7
  gem.name = "simple_app_config"
8
8
  gem.summary = %Q{A little helper to define and access the app configuration}
9
- gem.description = %Q{Use yml and erb and speficiy environments and scopes}
9
+ gem.description = %Q{Use yml and erb and specify environments and scopes}
10
10
  gem.email = "patrick.huesler@gmail.com"
11
11
  gem.homepage = "http://github.com/phuesler/simple_app_config"
12
12
  gem.authors = ["Patrick Huesler"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.1.21
File without changes
@@ -5,12 +5,12 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{simple_app_config}
8
- s.version = "0.1.2"
8
+ s.version = "0.1.21"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Patrick Huesler"]
12
12
  s.date = %q{2009-10-04}
13
- s.description = %q{Use yml and erb and speficiy environments and scopes}
13
+ s.description = %q{Use yml and erb and specify environments and scopes}
14
14
  s.email = %q{patrick.huesler@gmail.com}
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE",
@@ -23,10 +23,10 @@ Gem::Specification.new do |s|
23
23
  "README.rdoc",
24
24
  "Rakefile",
25
25
  "VERSION",
26
- "lib/app_config.rb",
26
+ "lib/simple_app_config.rb",
27
27
  "simple_app_config.gemspec",
28
- "test/app_config_test.rb",
29
28
  "test/fixtures/application.yml",
29
+ "test/simple_app_config_test.rb",
30
30
  "test/test_helper.rb"
31
31
  ]
32
32
  s.homepage = %q{http://github.com/phuesler/simple_app_config}
@@ -35,7 +35,7 @@ Gem::Specification.new do |s|
35
35
  s.rubygems_version = %q{1.3.5}
36
36
  s.summary = %q{A little helper to define and access the app configuration}
37
37
  s.test_files = [
38
- "test/app_config_test.rb",
38
+ "test/simple_app_config_test.rb",
39
39
  "test/test_helper.rb"
40
40
  ]
41
41
 
data/test/test_helper.rb CHANGED
@@ -3,7 +3,7 @@ require 'test/unit'
3
3
 
4
4
  $LOAD_PATH.unshift(File.dirname(__FILE__))
5
5
  $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
6
- require 'app_config'
6
+ require 'simple_app_config'
7
7
 
8
8
  class Test::Unit::TestCase
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_app_config
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrick Huesler
@@ -13,7 +13,7 @@ date: 2009-10-04 00:00:00 +02:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
16
- description: Use yml and erb and speficiy environments and scopes
16
+ description: Use yml and erb and specify environments and scopes
17
17
  email: patrick.huesler@gmail.com
18
18
  executables: []
19
19
 
@@ -29,10 +29,10 @@ files:
29
29
  - README.rdoc
30
30
  - Rakefile
31
31
  - VERSION
32
- - lib/app_config.rb
32
+ - lib/simple_app_config.rb
33
33
  - simple_app_config.gemspec
34
- - test/app_config_test.rb
35
34
  - test/fixtures/application.yml
35
+ - test/simple_app_config_test.rb
36
36
  - test/test_helper.rb
37
37
  has_rdoc: true
38
38
  homepage: http://github.com/phuesler/simple_app_config
@@ -63,5 +63,5 @@ signing_key:
63
63
  specification_version: 3
64
64
  summary: A little helper to define and access the app configuration
65
65
  test_files:
66
- - test/app_config_test.rb
66
+ - test/simple_app_config_test.rb
67
67
  - test/test_helper.rb