nodes 0.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/CHANGELOG.md +0 -0
- data/LICENSE +0 -0
- data/README.md +0 -0
- data/ROADMAP.md +0 -0
- data/bin/node.sh +27 -0
- data/lib/nodes.rb +3 -0
- metadata +87 -0
data/CHANGELOG.md
ADDED
File without changes
|
data/LICENSE
ADDED
File without changes
|
data/README.md
ADDED
File without changes
|
data/ROADMAP.md
ADDED
File without changes
|
data/bin/node.sh
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
#!/usr/local/bin/ruby
|
2
|
+
#
|
3
|
+
|
4
|
+
require 'rubygems'
|
5
|
+
gem nodes
|
6
|
+
|
7
|
+
commands_help = "Commands:\n" \
|
8
|
+
" add Add new node\n"
|
9
|
+
usage_help = "usage: node command [arguments...] [options...]\n\n" + commands_help
|
10
|
+
|
11
|
+
|
12
|
+
unless ARGV.first
|
13
|
+
puts usage_help
|
14
|
+
exit
|
15
|
+
end
|
16
|
+
|
17
|
+
command = ARGV.first
|
18
|
+
ARGV.shift
|
19
|
+
|
20
|
+
|
21
|
+
case command
|
22
|
+
when 'add'
|
23
|
+
puts "add node"
|
24
|
+
else
|
25
|
+
puts "Unknown command: #{command}"
|
26
|
+
puts commands_help
|
27
|
+
end
|
data/lib/nodes.rb
ADDED
metadata
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: nodes
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 9
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
version: "0.1"
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Eugene Markine
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2010-07-02 00:00:00 +02:00
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: rspec
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
hash: 3
|
29
|
+
segments:
|
30
|
+
- 0
|
31
|
+
version: "0"
|
32
|
+
type: :development
|
33
|
+
version_requirements: *id001
|
34
|
+
description: Nodes is a data warehouse in the form of meta tags, which may have additional values
|
35
|
+
email:
|
36
|
+
- emarkine@gmail.com
|
37
|
+
executables:
|
38
|
+
- node.sh
|
39
|
+
extensions: []
|
40
|
+
|
41
|
+
extra_rdoc_files: []
|
42
|
+
|
43
|
+
files:
|
44
|
+
- bin/node.sh
|
45
|
+
- lib/nodes.rb
|
46
|
+
- LICENSE
|
47
|
+
- README.md
|
48
|
+
- ROADMAP.md
|
49
|
+
- CHANGELOG.md
|
50
|
+
has_rdoc: true
|
51
|
+
homepage: http://nodes.dataclone.eu
|
52
|
+
licenses: []
|
53
|
+
|
54
|
+
post_install_message:
|
55
|
+
rdoc_options: []
|
56
|
+
|
57
|
+
require_paths:
|
58
|
+
- lib
|
59
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
60
|
+
none: false
|
61
|
+
requirements:
|
62
|
+
- - ">="
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
hash: 3
|
65
|
+
segments:
|
66
|
+
- 0
|
67
|
+
version: "0"
|
68
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
69
|
+
none: false
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
hash: 23
|
74
|
+
segments:
|
75
|
+
- 1
|
76
|
+
- 3
|
77
|
+
- 6
|
78
|
+
version: 1.3.6
|
79
|
+
requirements: []
|
80
|
+
|
81
|
+
rubyforge_project: nodes
|
82
|
+
rubygems_version: 1.3.7
|
83
|
+
signing_key:
|
84
|
+
specification_version: 3
|
85
|
+
summary: Nodes Spin
|
86
|
+
test_files: []
|
87
|
+
|