confinicky 0.1.2 → 0.1.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 +4 -4
- data/VERSION +1 -1
- data/bin/cfy +5 -0
- data/bin/confinicky +1 -18
- data/confinicky.gemspec +4 -2
- data/lib/confinicky/boot.rb +17 -0
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2aa4338ddc22773f4f1914dbbaab381595c9d3f1
|
|
4
|
+
data.tar.gz: 155031338eb7c884eca0463e7a758667b86b9c1b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 762f8ec4ec1f496c207855fe500eb247d8908f98d95d98fafd1d12cb8ee2469ffd345e3aedfba9d3be243a1c6d88e43c805c12e81c32aee318bec66299979c42
|
|
7
|
+
data.tar.gz: f12a8c90150dcbe1457adbc8d22fd7b54eb5fb1a96a26dd66e5d8982a91943616706a265e2c5e107bfb4e2227ba14d942f9a9743ca4968292edde3cbf6e97db0
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.3
|
data/bin/cfy
ADDED
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.
|
|
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.
|
|
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.
|
|
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
|