synack 1.0.0 → 1.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/README.md +7 -3
- data/README.rdoc +5 -1
- data/VERSION +1 -1
- data/synack.gemspec +75 -0
- metadata +3 -2
data/README.md
CHANGED
@@ -9,13 +9,17 @@ properly.
|
|
9
9
|
|
10
10
|
To start synack:
|
11
11
|
|
12
|
-
|
12
|
+
synack -s
|
13
13
|
|
14
14
|
To send a message to your local Notification Center:
|
15
15
|
|
16
|
-
|
16
|
+
synack "Watson, come here, I need you."
|
17
17
|
|
18
18
|
You can send messages to remote machines by specifying a host and port in the client:
|
19
19
|
|
20
|
-
|
20
|
+
synack -h my_remote_machine "I'm here, what did you want?"
|
21
|
+
|
22
|
+
You can even use UNIX pipes to send messages (first line of input only, for now):
|
23
|
+
|
24
|
+
echo 'Foo to you, sir.' | synack
|
21
25
|
|
data/README.rdoc
CHANGED
@@ -8,7 +8,7 @@ properly.
|
|
8
8
|
|
9
9
|
To start synack:
|
10
10
|
|
11
|
-
synack
|
11
|
+
synack -s
|
12
12
|
|
13
13
|
To send a message to your local Notification Center:
|
14
14
|
|
@@ -18,6 +18,10 @@ You can send messages to remote machines by specifying a host and port in the cl
|
|
18
18
|
|
19
19
|
synack -h my_remote_machine -p 11113 "I'm here, what did you want?"
|
20
20
|
|
21
|
+
You can even use UNIX pipes to send messages (first line of input only, for now):
|
22
|
+
|
23
|
+
echo 'Foo to you, sir.' | synack
|
24
|
+
|
21
25
|
== Contributing to synack
|
22
26
|
|
23
27
|
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.1
|
data/synack.gemspec
ADDED
@@ -0,0 +1,75 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = "synack"
|
8
|
+
s.version = "1.0.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Corey Ehmke", "Max Thom Stahl"]
|
12
|
+
s.date = "2012-07-29"
|
13
|
+
s.description = "A Ruby server for terminal-notifier"
|
14
|
+
s.email = "corey@idolhands.com"
|
15
|
+
s.executables = ["synack", "synack_client", "synack_server"]
|
16
|
+
s.extra_rdoc_files = [
|
17
|
+
"LICENSE.txt",
|
18
|
+
"README.md",
|
19
|
+
"README.rdoc"
|
20
|
+
]
|
21
|
+
s.files = [
|
22
|
+
".rspec",
|
23
|
+
".rvmrc",
|
24
|
+
"Gemfile",
|
25
|
+
"Gemfile.lock",
|
26
|
+
"LICENSE.txt",
|
27
|
+
"README.md",
|
28
|
+
"README.rdoc",
|
29
|
+
"Rakefile",
|
30
|
+
"VERSION",
|
31
|
+
"bin/synack",
|
32
|
+
"bin/synack_client",
|
33
|
+
"bin/synack_server",
|
34
|
+
"lib/synack.rb",
|
35
|
+
"lib/synack/client.rb",
|
36
|
+
"lib/synack/server.rb",
|
37
|
+
"synack.gemspec"
|
38
|
+
]
|
39
|
+
s.homepage = "http://github.com/Bantik/synack"
|
40
|
+
s.licenses = ["MIT"]
|
41
|
+
s.require_paths = ["lib"]
|
42
|
+
s.rubygems_version = "1.8.24"
|
43
|
+
s.summary = "A Ruby server for terminal-notifier"
|
44
|
+
|
45
|
+
if s.respond_to? :specification_version then
|
46
|
+
s.specification_version = 3
|
47
|
+
|
48
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
49
|
+
s.add_runtime_dependency(%q<getopt>, [">= 0"])
|
50
|
+
s.add_development_dependency(%q<bundler>, [">= 0"])
|
51
|
+
s.add_development_dependency(%q<jeweler>, [">= 0"])
|
52
|
+
s.add_development_dependency(%q<rdoc>, [">= 0"])
|
53
|
+
s.add_development_dependency(%q<rspec>, [">= 0"])
|
54
|
+
s.add_development_dependency(%q<shoulda>, [">= 0"])
|
55
|
+
s.add_development_dependency(%q<simplecov>, [">= 0"])
|
56
|
+
else
|
57
|
+
s.add_dependency(%q<getopt>, [">= 0"])
|
58
|
+
s.add_dependency(%q<bundler>, [">= 0"])
|
59
|
+
s.add_dependency(%q<jeweler>, [">= 0"])
|
60
|
+
s.add_dependency(%q<rdoc>, [">= 0"])
|
61
|
+
s.add_dependency(%q<rspec>, [">= 0"])
|
62
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
63
|
+
s.add_dependency(%q<simplecov>, [">= 0"])
|
64
|
+
end
|
65
|
+
else
|
66
|
+
s.add_dependency(%q<getopt>, [">= 0"])
|
67
|
+
s.add_dependency(%q<bundler>, [">= 0"])
|
68
|
+
s.add_dependency(%q<jeweler>, [">= 0"])
|
69
|
+
s.add_dependency(%q<rdoc>, [">= 0"])
|
70
|
+
s.add_dependency(%q<rspec>, [">= 0"])
|
71
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
72
|
+
s.add_dependency(%q<simplecov>, [">= 0"])
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: synack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -151,6 +151,7 @@ files:
|
|
151
151
|
- lib/synack.rb
|
152
152
|
- lib/synack/client.rb
|
153
153
|
- lib/synack/server.rb
|
154
|
+
- synack.gemspec
|
154
155
|
homepage: http://github.com/Bantik/synack
|
155
156
|
licenses:
|
156
157
|
- MIT
|
@@ -166,7 +167,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
166
167
|
version: '0'
|
167
168
|
segments:
|
168
169
|
- 0
|
169
|
-
hash:
|
170
|
+
hash: 3202130842496378376
|
170
171
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
171
172
|
none: false
|
172
173
|
requirements:
|