kredentials 0.0.1 → 0.1.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/lib/kredentials.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  require "kredentials/version"
2
- require "kredentials/credentials"
2
+ require "kredentials/kredentials"
3
3
 
@@ -1,4 +1,4 @@
1
- module Credentials
1
+ module Kredentials
2
2
 
3
3
  def self.extended(cls)
4
4
  cls.cattr_accessor(:config_env)
@@ -1,3 +1,3 @@
1
1
  module Kredentials
2
- VERSION = "0.0.1"
2
+ VERSION = "0.1.0.0"
3
3
  end
@@ -1,19 +1,19 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  class TestConfig
4
- extend Credentials
4
+ extend Kredentials
5
5
  @@test = {:key => 'test'}
6
6
  end
7
7
 
8
8
  class TestDefaultConfig
9
- extend Credentials
9
+ extend Kredentials
10
10
  @@defaults = {:key => 'default'}
11
11
  @@production = {:key => 'production'}
12
12
  @@staging = {:key => 'staging'}
13
13
  end
14
14
 
15
15
  class TestNoStagingConfig
16
- extend Credentials
16
+ extend Kredentials
17
17
  @@development = {:key => 'development'}
18
18
  @@production = {:key => 'production'}
19
19
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kredentials
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.0.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-08-06 00:00:00.000000000 Z
12
+ date: 2012-11-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec
@@ -58,9 +58,9 @@ files:
58
58
  - Rakefile
59
59
  - kredentials.gemspec
60
60
  - lib/kredentials.rb
61
- - lib/kredentials/credentials.rb
61
+ - lib/kredentials/kredentials.rb
62
62
  - lib/kredentials/version.rb
63
- - spec/kredentials/credentials_spec.rb
63
+ - spec/kredentials/kredentials_spec.rb
64
64
  - spec/spec_helper.rb
65
65
  homepage: https://github.com/bkr/kredentials
66
66
  licenses: []
@@ -87,5 +87,5 @@ signing_key:
87
87
  specification_version: 3
88
88
  summary: Gem allows to define config constants for different Rails environments.
89
89
  test_files:
90
- - spec/kredentials/credentials_spec.rb
90
+ - spec/kredentials/kredentials_spec.rb
91
91
  - spec/spec_helper.rb