nodes 0.1 → 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.
- data/bin/{node.sh → node} +2 -2
- data/lib/nodes.rb +1 -1
- metadata +5 -4
data/bin/{node.sh → node}
RENAMED
@@ -1,8 +1,7 @@
|
|
1
1
|
#!/usr/local/bin/ruby
|
2
2
|
#
|
3
|
-
|
4
3
|
require 'rubygems'
|
5
|
-
|
4
|
+
require 'nodes'
|
6
5
|
|
7
6
|
commands_help = "Commands:\n" \
|
8
7
|
" add Add new node\n"
|
@@ -10,6 +9,7 @@ usage_help = "usage: node command [arguments...] [options...]\n\n" + commands_he
|
|
10
9
|
|
11
10
|
|
12
11
|
unless ARGV.first
|
12
|
+
puts "Nodes #{Nodes::VERSION}"
|
13
13
|
puts usage_help
|
14
14
|
exit
|
15
15
|
end
|
data/lib/nodes.rb
CHANGED
metadata
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nodes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
|
9
|
+
- 1
|
10
|
+
version: 0.1.1
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- Eugene Markine
|
@@ -35,13 +36,13 @@ description: Nodes is a data warehouse in the form of meta tags, which may have
|
|
35
36
|
email:
|
36
37
|
- emarkine@gmail.com
|
37
38
|
executables:
|
38
|
-
- node
|
39
|
+
- node
|
39
40
|
extensions: []
|
40
41
|
|
41
42
|
extra_rdoc_files: []
|
42
43
|
|
43
44
|
files:
|
44
|
-
- bin/node
|
45
|
+
- bin/node
|
45
46
|
- lib/nodes.rb
|
46
47
|
- LICENSE
|
47
48
|
- README.md
|