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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8f5b7d977cad5181d1070ecc6a5240c2f80ed3a3
4
- data.tar.gz: 50a227050f8c9e156bad316f84895d5d0934a89a
3
+ metadata.gz: 21f8c63dec2204f125358ccde13f47b549fcb504
4
+ data.tar.gz: 812f362075f3155c1f91d1514b1fb04e61a9be05
5
5
  SHA512:
6
- metadata.gz: 6760f53728213060159ff65fde0270293ea12eb7fe1a726d22a5ca9c593b4102ad9ac2b04f4528d80625b08a827c52a181957a29b306332443f2b5e327ace0cb
7
- data.tar.gz: 75c80917c3058b11edbed561351ca9ff62fe26e3771de0120301d01e0979a1efeae872bcec96cf8252365acc2d4be497cdac075c9eed2b378b31e6fa9f2f46d3
6
+ metadata.gz: 847e440280de1c18814527281935fd658674e7b90bee168b445c57903d0fd14c83bf29c74cc38211998615eda96f4510fc377e0e40ce63279549db5d7d4508f4
7
+ data.tar.gz: 38630688d8e2ab8ba68ca5b3341cd8d802a92c0f194aa582d6f5d023f5f68432177adb3cb2287e8823122b534e77673f109852a8b76002c8fdd08afc9362cd94
data/.gitignore CHANGED
@@ -11,4 +11,4 @@ pkg
11
11
  rdoc
12
12
  spec/reports
13
13
  tmp
14
- nbproject/
14
+ .coveralls.yml
@@ -1,9 +1,10 @@
1
1
  language: ruby
2
2
  rvm:
3
3
  - "1.8.7"
4
- - "1.9.2"
5
4
  - "1.9.3"
5
+ - "2.0.0"
6
6
  - jruby-18mode # JRuby in 1.8 mode
7
7
  - jruby-19mode # JRuby in 1.9 mode
8
8
  - rbx-18mode
9
9
  - rbx-19mode
10
+ - ree
data/Gemfile CHANGED
@@ -3,3 +3,4 @@ source 'https://rubygems.org'
3
3
  gemspec
4
4
  gem 'rake'
5
5
  gem 'rspec'
6
+ gem 'coveralls', :require => false
data/README.md CHANGED
@@ -1,8 +1,16 @@
1
1
  # A9n
2
2
 
3
- [![Build status](https://secure.travis-ci.org/knapo/a9n.png)](https://travis-ci.org/knapo/a9n)
3
+ [![Gem Version](https://badge.fury.io/rb/a9n.png)][gem_version]
4
+ [![Build status](https://secure.travis-ci.org/knapo/a9n.png)][travis]
5
+ [![Code Climate](https://codeclimate.com/github/knapo/a9n.png)][codeclimate]
6
+ [![Coverage Status](https://coveralls.io/repos/knapo/a9n/badge.png?branch=master)][coveralls]
4
7
 
5
- Simple tool for managing ruby/rails application configurations.
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)
@@ -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 app configuration}
8
- gem.summary = %q{Simple tool for managing app configuration}
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($\)
@@ -1,3 +1,3 @@
1
1
  module A9n
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -3,6 +3,11 @@ require 'bundler/setup'
3
3
 
4
4
  require 'a9n'
5
5
 
6
+ require 'coveralls'
7
+ Coveralls.wear!
8
+
6
9
  RSpec.configure do |config|
7
10
  config.order = "random"
11
+ config.color_enabled = true
12
+ config.tty = true
8
13
  end
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.0
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-06-07 00:00:00.000000000 Z
11
+ date: 2013-07-05 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: Simple tool for managing app configuration
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: Simple tool for managing app configuration
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