cfg-config 0.0.2 → 0.0.3

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
  SHA256:
3
- metadata.gz: 42d965189975d3e21172981161817be59fd20ee4dd0641d119626eeff3f451a7
4
- data.tar.gz: 2176e90e4c01cd3990ec48a62a59bb166a924d68148c074ab4f04b208a106990
3
+ metadata.gz: 98f1b84f36b96cf5b15c736ca58d361f58a2524b60a5afe4dbc7c16fb87434b1
4
+ data.tar.gz: c4a4e53293aa6ff8a06fc04cacd72dd22bc8685cd633e765ff3b552688a5a961
5
5
  SHA512:
6
- metadata.gz: 35fd6448761324bbe04394ca8165d8c4613d4a8e82bcad27fb2cf0671c170f3c12be3417efc877464d3080d1c6e91ae049fefbc9f29901caa78fc57c2f3b636c
7
- data.tar.gz: 9e47521770880b2522499b8c9237114dc19240d6db6b6201a5ae16f0e7593d50df0875f836e7baff99fb92b6a1d829dec8ca6526221887bf1f6fed3d40cfba58
6
+ metadata.gz: f1db43c5c3f515afc4dc596c61df3fd63b20f6b42d71b72916d77b0907a37a61d8ed9525066723953a97aece51873b5b2fe4cfef89caa2cb3faa3ecc0d1f1d96
7
+ data.tar.gz: b731873773d9a59bc55a4dee924252545d4a2896ff001a41e2a0fb55382c64e844e67b5967fe7fd6c5d062661621657748b9531c51d78557909001d0aff2682c
data/cfg-config.gemspec CHANGED
@@ -20,8 +20,8 @@ Gem::Specification.new do |spec|
20
20
 
21
21
  # Specify which files should be added to the gem when it is released.
22
22
  spec.files = Dir['README.md', 'LICENSE.txt',
23
- 'CHANGELOG.md', 'lib/**/*.rb', 'bin/*',
24
- 'cfg-config.gemspec', 'Gemfile', 'Rakefile']
23
+ 'CHANGELOG.md', 'lib/**/*.rb',
24
+ 'cfg-config.gemspec', 'Gemfile']
25
25
  spec.bindir = 'exe'
26
26
  spec.executables = spec.files.grep(/^exe\//) { |f| File.basename(f) }
27
27
  spec.require_paths = ['lib']
data/lib/CFG/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module CFG
2
- VERSION = '0.0.2'.freeze
2
+ VERSION = '0.0.3'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cfg-config
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vinay Sajip
@@ -22,9 +22,6 @@ files:
22
22
  - Gemfile
23
23
  - LICENSE.txt
24
24
  - README.md
25
- - Rakefile
26
- - bin/console
27
- - bin/setup
28
25
  - cfg-config.gemspec
29
26
  - lib/CFG/config.rb
30
27
  - lib/CFG/version.rb
data/Rakefile DELETED
@@ -1,11 +0,0 @@
1
- require 'bundler/gem_tasks'
2
- require 'rake/testtask'
3
-
4
- Rake::TestTask.new(:test) do |t|
5
- t.libs << 'test'
6
- t.libs << 'lib'
7
- t.test_files = FileList['test/**/*_test.rb']
8
- end
9
-
10
- # task :default => :test
11
- task default: :test
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'bundler/setup'
4
- require 'CFG/config'
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require 'irb'
14
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here