sanultari-config 0.2.0.rc.1 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/.travis.yml +8 -0
  2. data/Gemfile +18 -18
  3. data/README.md +27 -26
  4. data/VERSION +1 -1
  5. metadata +7 -6
data/.travis.yml ADDED
@@ -0,0 +1,8 @@
1
+ branches:
2
+ only:
3
+ - master
4
+ - develop
5
+ language: ruby
6
+ rvm:
7
+ - 1.9.3
8
+ - rbx-19mode
data/Gemfile CHANGED
@@ -1,18 +1,18 @@
1
- source "http://rubygems.org"
2
- # Add dependencies required to use your gem here.
3
- # Example:
4
- # gem "activesupport", ">= 2.3.5"
5
-
6
- # Add dependencies to develop your gem here.
7
- # Include everything needed to run rake, tests, features, etc.
8
- group :development do
9
- gem "ZenTest", "~> 4.8.1"
10
- gem "autotest-growl", "~> 0.2.16"
11
- gem "rspec", "~> 2.11"
12
- gem "yard", "~> 0.7"
13
- gem "redcarpet", "~> 2.1"
14
- gem "rdoc", "~> 3.12"
15
- gem "bundler", "~> 1.1"
16
- gem "jeweler", "~> 1.8.3"
17
- gem "rcov", ">= 0", :platform => [:ruby_18, :mingw_18]
18
- end
1
+ source "http://rubygems.org"
2
+ # Add dependencies required to use your gem here.
3
+ # Example:
4
+ # gem "activesupport", ">= 2.3.5"
5
+
6
+ # Add dependencies to develop your gem here.
7
+ # Include everything needed to run rake, tests, features, etc.
8
+ group :development do
9
+ gem "ZenTest", "~> 4.8.1"
10
+ gem "autotest-growl", "~> 0.2.16"
11
+ gem "rspec", "~> 2.11"
12
+ gem "yard", "~> 0.7"
13
+ gem "redcarpet", "~> 2.1", :platform => [:ruby_19, :mingw_19]
14
+ gem "rdoc", "~> 3.12"
15
+ gem "bundler", "~> 1.1"
16
+ gem "jeweler", "~> 1.8.3"
17
+ gem "rcov", ">= 0", :platform => [:ruby_18, :mingw_18]
18
+ end
data/README.md CHANGED
@@ -1,27 +1,28 @@
1
- # SanUltari Configuration
2
- [![Gemnasium](https://gemnasium.com/sanultari/config.png)](https://gemnasium.com/sanultari/config)
3
-
4
- 오브젝트를 이용하여 계층형 설정 정보를 관리하기 위한 라이브러리.
5
-
6
- ## 사용방식
7
- ```ruby
8
- require 'sanultari-config'
9
- config = SanUltari::Config.new
10
- config.init!
11
- config.develop.db.type = 'mysql'
12
- config.develop.db.host = 'localhost'
13
- config.develop.db.port = ...
14
- config.production.db.type = 'postgresql'
15
- config.production.db.host = 'localhost'
16
- ```
17
- ## Contributing to sanultari-config
18
- * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
19
- * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
20
- * Fork the project.
21
- * Start a feature/bugfix branch.
22
- * Commit and push until you are happy with your contribution.
23
- * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
24
- * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
25
-
26
- ## Copyright
1
+ # SanUltari Configuration
2
+ [![Gemnasium](https://gemnasium.com/sanultari/config.png)](https://gemnasium.com/sanultari/config)
3
+ [![Build Status](https://secure.travis-ci.org/sanultari/config.png?branch=develop)](http://travis-ci.org/sanultari/config)
4
+
5
+ 오브젝트를 이용하여 계층형 설정 정보를 관리하기 위한 라이브러리.
6
+
7
+ ## 사용방식
8
+ ```ruby
9
+ require 'sanultari-config'
10
+ config = SanUltari::Config.new
11
+ config.init!
12
+ config.develop.db.type = 'mysql'
13
+ config.develop.db.host = 'localhost'
14
+ config.develop.db.port = ...
15
+ config.production.db.type = 'postgresql'
16
+ config.production.db.host = 'localhost'
17
+ ```
18
+ ## Contributing to sanultari-config
19
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
20
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
21
+ * Fork the project.
22
+ * Start a feature/bugfix branch.
23
+ * Commit and push until you are happy with your contribution.
24
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
25
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
26
+
27
+ ## Copyright
27
28
  Copyright (c) 2012 Team SanUltari. See LICENSE.txt for further details.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0.rc.1
1
+ 0.2.0
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sanultari-config
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0.rc.1
5
- prerelease: 6
4
+ version: 0.2.0
5
+ prerelease:
6
6
  platform: ruby
7
7
  authors:
8
8
  - Jeong, Jiung
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-07-23 00:00:00.000000000 Z
12
+ date: 2012-08-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: ZenTest
@@ -167,6 +167,7 @@ files:
167
167
  - .document
168
168
  - .rspec
169
169
  - .rvmrc
170
+ - .travis.yml
170
171
  - Gemfile
171
172
  - Gemfile.lock
172
173
  - LICENSE.txt
@@ -198,13 +199,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
198
199
  version: '0'
199
200
  segments:
200
201
  - 0
201
- hash: -270335357142323998
202
+ hash: 1017306160802311613
202
203
  required_rubygems_version: !ruby/object:Gem::Requirement
203
204
  none: false
204
205
  requirements:
205
- - - ! '>'
206
+ - - ! '>='
206
207
  - !ruby/object:Gem::Version
207
- version: 1.3.1
208
+ version: '0'
208
209
  requirements: []
209
210
  rubyforge_project:
210
211
  rubygems_version: 1.8.24