centroid 0.1.0.beta → 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.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/centroid.gemspec +1 -1
  4. metadata +3 -5
  5. data/Gemfile +0 -3
  6. data/Rakefile +0 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 442b6a1b3ee53454896410af8438283629427be9
4
- data.tar.gz: 43a912b02506d5c43ec2c1a0cb8ae21014645d3e
3
+ metadata.gz: 88cda261ba612223506881320d31fc55cef45946
4
+ data.tar.gz: d6fd6b798585da95fe94311ef96053c1451a0589
5
5
  SHA512:
6
- metadata.gz: f0c33f1d345b44f5923382210ead37c2e7c0d151dc48c839a002c0d6fe32e607c43cc7833d93c862ed3eacd58ec5135233057c7e425a95067efdfad4d87c0727
7
- data.tar.gz: 45c336c21d6e93275cbac3704bc42f0f47e18b9814325d06f5c91888e8f80629af7785b8a224e7940f5c790cc4a18921df9efe2345e72e94f434aea60ba233bd
6
+ metadata.gz: d8faf1555e47cd66426de9f35cf4befacdaec03398d426bdeb9cdecf328417b286683e6df56c1b9409b74ec8ca7edf19a5063687facf93fecf5a9c40391c77f2
7
+ data.tar.gz: 5537aca1475d76f33b8b55d0220fb2fb679491229aa07683dc88ab0459bbe09f39497e1db67d21e79fcfd844655ac85d1831329b69e3f1a1aae962591a35ce01
data/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  The Centroid Ruby package is hosted at [rubygems.org](https://rubygems.org/gems/centroid).
6
6
 
7
- You can install Centroid using gem with `gem install centroid`, or you can download, unpack, then `bundle install` and `rake install` from the `/ruby` directory.
7
+ You can install Centroid using gem with `gem install centroid`, or you can clone the repo, then `gem build centroid.gemspec`, and `gem install -l centroid` from the `ruby/` directory.
8
8
 
9
9
  ## Usage
10
10
 
data/centroid.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'centroid'
3
- s.version = '0.1.0.beta'
3
+ s.version = '0.1.1'
4
4
  s.summary = 'A centralizaed paradigm to configuration management.'
5
5
  s.description = 'Centroid is a tool for loading configuration values declared in JSON, and accessing those configuration values using object properties.'
6
6
  s.author = 'Resource Data, Inc'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: centroid
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.beta
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Resource Data, Inc
@@ -17,9 +17,7 @@ executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
- - Gemfile
21
20
  - README.md
22
- - Rakefile
23
21
  - centroid.gemspec
24
22
  - lib/centroid.rb
25
23
  - test/centroid_test.rb
@@ -38,9 +36,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
38
36
  version: '0'
39
37
  required_rubygems_version: !ruby/object:Gem::Requirement
40
38
  requirements:
41
- - - '>'
39
+ - - '>='
42
40
  - !ruby/object:Gem::Version
43
- version: 1.3.1
41
+ version: '0'
44
42
  requirements: []
45
43
  rubyforge_project:
46
44
  rubygems_version: 2.2.2
data/Gemfile DELETED
@@ -1,3 +0,0 @@
1
- source "http://rubygems.org"
2
-
3
- gemspec
data/Rakefile DELETED
@@ -1,2 +0,0 @@
1
- require 'bundler'
2
- Bundler::GemHelper.install_tasks