app_konfig 0.0.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 1e1beb7cc3fb94c0ee429c119367f0f178e94c82
4
+ data.tar.gz: 1736fb7476e641fa00b1475e178b2cf906199db3
5
+ SHA512:
6
+ metadata.gz: 5a31a9e27f8fa7df33a60cfac1401a3d6206246c471f55e67a92e5b56c156a5f4fe297002b93fe10bafe75116714d96deff052bfcdb9f2d58a6b5dea8a1a18d5
7
+ data.tar.gz: 2d1056801936125a3171d254642d26bf8da547c7195376d5fbb6bd4db9229cab865c22799a9e65750818781c26f91064ca509f0d791201a7d85b00ec105a16f2
data/.gitignore ADDED
@@ -0,0 +1,31 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /test/tmp/
9
+ /test/version_tmp/
10
+ /tmp/
11
+
12
+ ## Specific to RubyMotion:
13
+ .dat*
14
+ .repl_history
15
+ build/
16
+
17
+ ## Documentation cache and generated files:
18
+ /.yardoc/
19
+ /_yardoc/
20
+ /doc/
21
+ /rdoc/
22
+
23
+ ## Environment normalisation:
24
+ /.bundle/
25
+ /vendor/bundle
26
+ /lib/bundler/man/
27
+
28
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
29
+ .rvmrc
30
+
31
+ Gemfile.lock
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.2.0
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in app_konfig.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 Bartosz Kopiński
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,52 @@
1
+ # AppKonfig
2
+
3
+ Lightweight app configuration for Rails
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'app_konfig'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ ## Usage
18
+
19
+ In `config/config.yml`:
20
+
21
+ ```yaml
22
+ development:
23
+ value: 1
24
+ secret_key: DEV_TOKEN
25
+
26
+ test:
27
+ value: 2
28
+ secret_key: TEST_TOKEN
29
+
30
+ production:
31
+ value: 3
32
+ ```
33
+
34
+ In `config/secrets.yml`: (optional, not included in version control)
35
+ ```yaml
36
+ production:
37
+ secret_key: PRODUCTION_TOKEN
38
+ ```
39
+
40
+ Anywhere in the app:
41
+ ```ruby
42
+ AppConfig.value
43
+ AppConfig.secret_key
44
+ ```
45
+
46
+ ## Contributing
47
+
48
+ 1. Fork it ( https://github.com/netguru/app_konfig/fork )
49
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
50
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
51
+ 4. Push to the branch (`git push origin my-new-feature`)
52
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'app_konfig/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "app_konfig"
8
+ spec.version = AppKonfig::VERSION
9
+ spec.authors = ["Bartosz Kopiński"]
10
+ spec.email = ["bartosz@kopinski.pl"]
11
+ spec.summary = "Lightweight app configuration for Rails"
12
+ spec.homepage = "https://github.com/netguru/app_konfig"
13
+ spec.license = "MIT"
14
+
15
+ spec.files = `git ls-files -z`.split("\x0")
16
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
+ spec.require_paths = ["lib"]
19
+
20
+ spec.add_dependency "activesupport", ">= 3.2"
21
+ spec.add_development_dependency "bundler", "~> 1.7"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ end
@@ -0,0 +1,3 @@
1
+ module AppKonfig
2
+ VERSION = "0.0.1"
3
+ end
data/lib/app_konfig.rb ADDED
@@ -0,0 +1,38 @@
1
+ require "active_support/ordered_options"
2
+ require "yaml"
3
+ require "erb"
4
+
5
+ require "app_konfig/version"
6
+
7
+ module AppKonfig
8
+ class Config < ActiveSupport::OrderedOptions
9
+ DEFAULT_ENV = "development"
10
+ CONFIG_PATH = {
11
+ public: './config/config.yml',
12
+ secret: './config/secrets.yml',
13
+ }
14
+
15
+ def initialize
16
+ super
17
+ deep_merge!(pub_config).deep_merge!(sec_config)
18
+ end
19
+
20
+ def pub_config
21
+ load_config(CONFIG_PATH[:public])
22
+ end
23
+
24
+ def sec_config
25
+ load_config(CONFIG_PATH[:secret]) rescue {}
26
+ end
27
+
28
+ def load_config path
29
+ YAML.load(ERB.new(File.read(path)).result).fetch(env)
30
+ end
31
+
32
+ def env
33
+ ENV.fetch("RAILS_ENV"){ DEFAULT_ENV }
34
+ end
35
+ end
36
+ end
37
+
38
+ AppConfig = AppKonfig::Config.new
metadata ADDED
@@ -0,0 +1,96 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: app_konfig
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Bartosz Kopiński
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-03-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activesupport
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '3.2'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '3.2'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.7'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.7'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ description:
56
+ email:
57
+ - bartosz@kopinski.pl
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".ruby-version"
64
+ - Gemfile
65
+ - LICENSE.txt
66
+ - README.md
67
+ - Rakefile
68
+ - app_konfig.gemspec
69
+ - lib/app_konfig.rb
70
+ - lib/app_konfig/version.rb
71
+ homepage: https://github.com/netguru/app_konfig
72
+ licenses:
73
+ - MIT
74
+ metadata: {}
75
+ post_install_message:
76
+ rdoc_options: []
77
+ require_paths:
78
+ - lib
79
+ required_ruby_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: '0'
84
+ required_rubygems_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ requirements: []
90
+ rubyforge_project:
91
+ rubygems_version: 2.4.5
92
+ signing_key:
93
+ specification_version: 4
94
+ summary: Lightweight app configuration for Rails
95
+ test_files: []
96
+ has_rdoc: