confinicky 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8082da28725014f83aec98b12a7e92b38ba7ab59
4
- data.tar.gz: 3a88d9d5510f7772ab29236275eef74c34c63d04
3
+ metadata.gz: 2aa4338ddc22773f4f1914dbbaab381595c9d3f1
4
+ data.tar.gz: 155031338eb7c884eca0463e7a758667b86b9c1b
5
5
  SHA512:
6
- metadata.gz: ebe7c93050b8f3acf035fb5a030194bfd983feb4536bafe7fa58529d7fceb77986ebf87c6ffe9f5414a715f28c750266a80331aec8f04d0784d4f710ad4e4dd1
7
- data.tar.gz: 24bde737dd945e844694b2408d1fe387ecc7b72002d8973d178f9e9869b2a0d23f9a6914ea3f6570cf0066ee08fac1cf01e488746a086abf0442d413f08dbaa1
6
+ metadata.gz: 762f8ec4ec1f496c207855fe500eb247d8908f98d95d98fafd1d12cb8ee2469ffd345e3aedfba9d3be243a1c6d88e43c805c12e81c32aee318bec66299979c42
7
+ data.tar.gz: f12a8c90150dcbe1457adbc8d22fd7b54eb5fb1a96a26dd66e5d8982a91943616706a265e2c5e107bfb4e2227ba14d942f9a9743ca4968292edde3cbf6e97db0
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.1.3
data/bin/cfy ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $:.push File.expand_path("../../lib", __FILE__)
4
+
5
+ require 'confinicky/boot'
data/bin/confinicky CHANGED
@@ -1,22 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require 'commander/import'
4
- require 'terminal-table'
5
-
6
3
  $:.push File.expand_path("../../lib", __FILE__)
7
4
 
8
- require 'confinicky'
9
-
10
- HighLine.track_eof = false # Fix for built-in Ruby
11
- Signal.trap("INT") {} # Suppress backtrace when exiting command
12
-
13
- program :version, "0.1.2"
14
- program :description, 'A command-line interface for managing your shell environment variables.'
15
-
16
- program :help, 'Author', 'Jim Jeffers <jim@sumocreations.com>'
17
- program :help, 'Website', 'https://github.com/jimjeffers'
18
- program :help_formatter, :compact
19
-
20
- default_command :help
21
-
22
- require 'confinicky/commands'
5
+ require 'confinicky/boot'
data/confinicky.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: confinicky 0.1.2 ruby lib
5
+ # stub: confinicky 0.1.3 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "confinicky"
9
- s.version = "0.1.2"
9
+ s.version = "0.1.3"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
@@ -27,9 +27,11 @@ Gem::Specification.new do |s|
27
27
  "README.rdoc",
28
28
  "Rakefile",
29
29
  "VERSION",
30
+ "bin/cfy",
30
31
  "bin/confinicky",
31
32
  "confinicky.gemspec",
32
33
  "lib/confinicky.rb",
34
+ "lib/confinicky/boot.rb",
33
35
  "lib/confinicky/commands.rb",
34
36
  "lib/confinicky/commands/clean.rb",
35
37
  "lib/confinicky/commands/duplicates.rb",
@@ -0,0 +1,17 @@
1
+ require 'commander/import'
2
+ require 'terminal-table'
3
+ require 'confinicky'
4
+
5
+ HighLine.track_eof = false # Fix for built-in Ruby
6
+ Signal.trap("INT") {} # Suppress backtrace when exiting command
7
+
8
+ program :version, "0.1.3"
9
+ program :description, 'A command-line interface for managing your shell environment variables.'
10
+
11
+ program :help, 'Author', 'Jim Jeffers <jim@sumocreations.com>'
12
+ program :help, 'Website', 'https://github.com/jimjeffers'
13
+ program :help_formatter, :compact
14
+
15
+ default_command :help
16
+
17
+ require 'confinicky/commands'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: confinicky
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jim Jeffers
@@ -124,9 +124,11 @@ files:
124
124
  - README.rdoc
125
125
  - Rakefile
126
126
  - VERSION
127
+ - bin/cfy
127
128
  - bin/confinicky
128
129
  - confinicky.gemspec
129
130
  - lib/confinicky.rb
131
+ - lib/confinicky/boot.rb
130
132
  - lib/confinicky/commands.rb
131
133
  - lib/confinicky/commands/clean.rb
132
134
  - lib/confinicky/commands/duplicates.rb