sinoma 0.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.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/bin/sinoma +31 -0
  3. data/lib/sinoma.rb +28 -0
  4. metadata +127 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 1b8d4958766d933f4e84769501dc7185b0bb3810
4
+ data.tar.gz: ade22628abf125bad27e118ee5e6cdc219728e99
5
+ SHA512:
6
+ metadata.gz: 1854ffd48f7894e0e3cf709a4d198ac1fe355984da29204df01de0c96ea7d3ca6714e6b30a499e6b45dbdd99ec6d8d6d49aa85e749f574c2c4e26d132a69ae0e
7
+ data.tar.gz: 70a07875f5fb51d830078263bb8ec6a48a5b42de4aa23cac78520f07bd5d0f565976b01c71fc4616c2d3278df3af05e1ba9b47b031af9629bf0a7c86deaaa394
data/bin/sinoma ADDED
@@ -0,0 +1,31 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'sinoma'
4
+ require 'optparse'
5
+
6
+ options = {}
7
+ option_parser = OptionParser.new do | opts |
8
+
9
+ opts.banner = "Usage: sinoma -k <apikey> [options] <path to named pipe>"
10
+
11
+ opts.on( "-k", "--apikey KEY", String, "nma apikey" ) do | key |
12
+ options[ :apikey ] = key
13
+ end
14
+
15
+ opts.on_tail("-h", "--help", "Show this message") do
16
+ puts opts
17
+ exit
18
+ end
19
+ end
20
+
21
+ option_parser.parse!
22
+
23
+ if ( options[ :apikey ].nil? or ARGV.empty? )
24
+ puts option_parser
25
+ exit
26
+ end
27
+
28
+ file_name = ARGV[ 0 ]
29
+ notification_source = File.open( file_name, "r" )
30
+ Sinoma.new( notification_source, options[ :apikey ] ).start
31
+
data/lib/sinoma.rb ADDED
@@ -0,0 +1,28 @@
1
+ require 'rubygems'
2
+ require 'ruby-notify-my-android'
3
+
4
+ class Sinoma
5
+
6
+ def initialize( event_source, api_key )
7
+ @event_source = event_source
8
+ @api_key = api_key
9
+ end
10
+
11
+ def start
12
+ loop do
13
+ while ( line = @event_source.gets ) do
14
+ send_notification line
15
+ end
16
+ end
17
+ end
18
+
19
+ private
20
+ def send_notification( message )
21
+ NMA.notify do | notification |
22
+ notification.description = message
23
+ notification.apikey = @api_key
24
+ end
25
+ end
26
+
27
+ end
28
+
metadata ADDED
@@ -0,0 +1,127 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sinoma
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Peter Ferenc Hajdu
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-09-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: ruby-notify-my-android
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0.4'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 0.4.3
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '0.4'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 0.4.3
33
+ - !ruby/object:Gem::Dependency
34
+ name: rspec-expectations
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '3.0'
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 3.0.4
43
+ type: :development
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '3.0'
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 3.0.4
53
+ - !ruby/object:Gem::Dependency
54
+ name: rspec-mocks
55
+ requirement: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - "~>"
58
+ - !ruby/object:Gem::Version
59
+ version: '3.0'
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: 3.0.4
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '3.0'
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: 3.0.4
73
+ - !ruby/object:Gem::Dependency
74
+ name: rspec
75
+ requirement: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - "~>"
78
+ - !ruby/object:Gem::Version
79
+ version: '3.0'
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: 3.0.0
83
+ type: :development
84
+ prerelease: false
85
+ version_requirements: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '3.0'
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: 3.0.0
93
+ description: Sinoma forwards notifications from a named pipe to your android device
94
+ through nma.
95
+ email: peter.ferenc.hajdu@gmail.com
96
+ executables:
97
+ - sinoma
98
+ extensions: []
99
+ extra_rdoc_files: []
100
+ files:
101
+ - bin/sinoma
102
+ - lib/sinoma.rb
103
+ homepage: http://github.com/PeterHajdu/sinoma
104
+ licenses:
105
+ - MIT
106
+ metadata: {}
107
+ post_install_message:
108
+ rdoc_options: []
109
+ require_paths:
110
+ - lib
111
+ required_ruby_version: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - ">="
114
+ - !ruby/object:Gem::Version
115
+ version: '0'
116
+ required_rubygems_version: !ruby/object:Gem::Requirement
117
+ requirements:
118
+ - - ">="
119
+ - !ruby/object:Gem::Version
120
+ version: '0'
121
+ requirements: []
122
+ rubyforge_project:
123
+ rubygems_version: 2.4.1
124
+ signing_key:
125
+ specification_version: 4
126
+ summary: Simple notification through notify my android.
127
+ test_files: []