a9n 0.1.0 → 0.1.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 +4 -4
- data/.gitignore +1 -1
- data/.travis.yml +2 -1
- data/Gemfile +1 -0
- data/README.md +15 -3
- data/a9n.gemspec +2 -2
- data/lib/a9n/version.rb +1 -1
- data/spec/spec_helper.rb +5 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 21f8c63dec2204f125358ccde13f47b549fcb504
|
|
4
|
+
data.tar.gz: 812f362075f3155c1f91d1514b1fb04e61a9be05
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 847e440280de1c18814527281935fd658674e7b90bee168b445c57903d0fd14c83bf29c74cc38211998615eda96f4510fc377e0e40ce63279549db5d7d4508f4
|
|
7
|
+
data.tar.gz: 38630688d8e2ab8ba68ca5b3341cd8d802a92c0f194aa582d6f5d023f5f68432177adb3cb2287e8823122b534e77673f109852a8b76002c8fdd08afc9362cd94
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
# A9n
|
|
2
2
|
|
|
3
|
-
[][gem_version]
|
|
4
|
+
[][travis]
|
|
5
|
+
[][codeclimate]
|
|
6
|
+
[][coveralls]
|
|
4
7
|
|
|
5
|
-
|
|
8
|
+
[gem_version]: https://rubygems.org/gems/a9n
|
|
9
|
+
[travis]: http://travis-ci.org/knapo/a9n
|
|
10
|
+
[codeclimate]: https://codeclimate.com/github/knapo/a9n
|
|
11
|
+
[coveralls]: https://coveralls.io/r/knapo/a9n
|
|
12
|
+
|
|
13
|
+
Simple tool for managing ruby/rails application configurations. Supports Rails 2.x, 3.x, 4.x.
|
|
6
14
|
|
|
7
15
|
## Installation
|
|
8
16
|
|
|
@@ -32,7 +40,7 @@ This step is not required, but recommended, as it configuration is loaded and
|
|
|
32
40
|
verified on evironment load.
|
|
33
41
|
|
|
34
42
|
It works with `Rails` by default. If you want to use `A9n` with non-rails app
|
|
35
|
-
you need to tell it A9n:
|
|
43
|
+
you may need to tell it A9n:
|
|
36
44
|
|
|
37
45
|
A9n.local_app = MyApp
|
|
38
46
|
|
|
@@ -55,3 +63,7 @@ is accessible by:
|
|
|
55
63
|
3. Commit your changes (`git commit -am 'Added some feature'`)
|
|
56
64
|
4. Push to the branch (`git push origin my-new-feature`)
|
|
57
65
|
5. Create new Pull Request
|
|
66
|
+
|
|
67
|
+
### Contributors
|
|
68
|
+
|
|
69
|
+
* [Grzegorz Świrski](https://github.com/sognat)
|
data/a9n.gemspec
CHANGED
|
@@ -4,8 +4,8 @@ require File.expand_path('../lib/a9n/version', __FILE__)
|
|
|
4
4
|
Gem::Specification.new do |gem|
|
|
5
5
|
gem.authors = ["Krzysztof Knapik"]
|
|
6
6
|
gem.email = ["knapo@knapo.net"]
|
|
7
|
-
gem.description = %q{Simple tool for managing
|
|
8
|
-
gem.summary = %q{
|
|
7
|
+
gem.description = %q{Simple tool for managing extra configuration in ruby/rails apps}
|
|
8
|
+
gem.summary = %q{a9n is a simple tool for managing extra configuration in ruby/rails apps}
|
|
9
9
|
gem.homepage = "https://github.com/knapo/a9n"
|
|
10
10
|
|
|
11
11
|
gem.files = `git ls-files`.split($\)
|
data/lib/a9n/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: a9n
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Krzysztof Knapik
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-07-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description: Simple tool for managing
|
|
13
|
+
description: Simple tool for managing extra configuration in ruby/rails apps
|
|
14
14
|
email:
|
|
15
15
|
- knapo@knapo.net
|
|
16
16
|
executables: []
|
|
@@ -54,7 +54,7 @@ rubyforge_project:
|
|
|
54
54
|
rubygems_version: 2.0.3
|
|
55
55
|
signing_key:
|
|
56
56
|
specification_version: 4
|
|
57
|
-
summary:
|
|
57
|
+
summary: a9n is a simple tool for managing extra configuration in ruby/rails apps
|
|
58
58
|
test_files:
|
|
59
59
|
- spec/a9n_spec.rb
|
|
60
60
|
- spec/fixtures/configuration.yml
|