notifyor 0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +34 -0
  5. data/bin/notify_me +14 -0
  6. data/lib/notifyor/cli.rb +24 -0
  7. data/lib/notifyor/configuration.rb +16 -0
  8. data/lib/notifyor/growl/adapters/terminal_notifier.rb +14 -0
  9. data/lib/notifyor/growl.rb +26 -0
  10. data/lib/notifyor/plugin.rb +28 -0
  11. data/lib/notifyor/remote/connection.rb +23 -0
  12. data/lib/notifyor/util/formatter.rb +15 -0
  13. data/lib/notifyor/version.rb +3 -0
  14. data/lib/notifyor.rb +17 -0
  15. data/spec/spec_helper.rb +96 -0
  16. data/spec/test_app/README.rdoc +28 -0
  17. data/spec/test_app/Rakefile +6 -0
  18. data/spec/test_app/app/assets/javascripts/application.js +13 -0
  19. data/spec/test_app/app/assets/stylesheets/application.css +15 -0
  20. data/spec/test_app/app/controllers/application_controller.rb +5 -0
  21. data/spec/test_app/app/helpers/application_helper.rb +2 -0
  22. data/spec/test_app/app/models/user.rb +3 -0
  23. data/spec/test_app/app/views/layouts/application.html.erb +14 -0
  24. data/spec/test_app/bin/bundle +3 -0
  25. data/spec/test_app/bin/rails +4 -0
  26. data/spec/test_app/bin/rake +4 -0
  27. data/spec/test_app/bin/setup +29 -0
  28. data/spec/test_app/config/application.rb +26 -0
  29. data/spec/test_app/config/boot.rb +5 -0
  30. data/spec/test_app/config/database.yml +25 -0
  31. data/spec/test_app/config/environment.rb +5 -0
  32. data/spec/test_app/config/environments/development.rb +41 -0
  33. data/spec/test_app/config/environments/production.rb +79 -0
  34. data/spec/test_app/config/environments/test.rb +42 -0
  35. data/spec/test_app/config/initializers/assets.rb +11 -0
  36. data/spec/test_app/config/initializers/backtrace_silencers.rb +7 -0
  37. data/spec/test_app/config/initializers/cookies_serializer.rb +3 -0
  38. data/spec/test_app/config/initializers/filter_parameter_logging.rb +4 -0
  39. data/spec/test_app/config/initializers/inflections.rb +16 -0
  40. data/spec/test_app/config/initializers/mime_types.rb +4 -0
  41. data/spec/test_app/config/initializers/notifyor.rb +3 -0
  42. data/spec/test_app/config/initializers/session_store.rb +3 -0
  43. data/spec/test_app/config/initializers/wrap_parameters.rb +14 -0
  44. data/spec/test_app/config/locales/en.yml +23 -0
  45. data/spec/test_app/config/routes.rb +56 -0
  46. data/spec/test_app/config/secrets.yml +22 -0
  47. data/spec/test_app/config.ru +4 -0
  48. data/spec/test_app/db/development.sqlite3 +0 -0
  49. data/spec/test_app/db/migrate/20160404044940_create_users.rb +11 -0
  50. data/spec/test_app/db/schema.rb +24 -0
  51. data/spec/test_app/log/development.log +85 -0
  52. data/spec/test_app/public/404.html +67 -0
  53. data/spec/test_app/public/422.html +67 -0
  54. data/spec/test_app/public/500.html +66 -0
  55. data/spec/test_app/public/favicon.ico +0 -0
  56. data/spec/test_app/test/fixtures/users.yml +11 -0
  57. data/spec/test_app/test/models/user_test.rb +7 -0
  58. metadata +230 -0
metadata ADDED
@@ -0,0 +1,230 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: notifyor
3
+ version: !ruby/object:Gem::Version
4
+ version: '0.3'
5
+ platform: ruby
6
+ authors:
7
+ - Erwin Schens
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-04-05 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 4.0.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 4.0.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: redis-objects
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 1.2.1
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 1.2.1
41
+ - !ruby/object:Gem::Dependency
42
+ name: connection_pool
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: terminal-notifier
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: sqlite3
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 3.4.0
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 3.4.0
97
+ description: Notifyer creates growl notifications on your desktop if something happens
98
+ in your Rails app.
99
+ email:
100
+ - erwin.schens@qurasoft.de
101
+ executables:
102
+ - notify_me
103
+ extensions: []
104
+ extra_rdoc_files: []
105
+ files:
106
+ - MIT-LICENSE
107
+ - README.rdoc
108
+ - Rakefile
109
+ - bin/notify_me
110
+ - lib/notifyor.rb
111
+ - lib/notifyor/cli.rb
112
+ - lib/notifyor/configuration.rb
113
+ - lib/notifyor/growl.rb
114
+ - lib/notifyor/growl/adapters/terminal_notifier.rb
115
+ - lib/notifyor/plugin.rb
116
+ - lib/notifyor/remote/connection.rb
117
+ - lib/notifyor/util/formatter.rb
118
+ - lib/notifyor/version.rb
119
+ - spec/spec_helper.rb
120
+ - spec/test_app/README.rdoc
121
+ - spec/test_app/Rakefile
122
+ - spec/test_app/app/assets/javascripts/application.js
123
+ - spec/test_app/app/assets/stylesheets/application.css
124
+ - spec/test_app/app/controllers/application_controller.rb
125
+ - spec/test_app/app/helpers/application_helper.rb
126
+ - spec/test_app/app/models/user.rb
127
+ - spec/test_app/app/views/layouts/application.html.erb
128
+ - spec/test_app/bin/bundle
129
+ - spec/test_app/bin/rails
130
+ - spec/test_app/bin/rake
131
+ - spec/test_app/bin/setup
132
+ - spec/test_app/config.ru
133
+ - spec/test_app/config/application.rb
134
+ - spec/test_app/config/boot.rb
135
+ - spec/test_app/config/database.yml
136
+ - spec/test_app/config/environment.rb
137
+ - spec/test_app/config/environments/development.rb
138
+ - spec/test_app/config/environments/production.rb
139
+ - spec/test_app/config/environments/test.rb
140
+ - spec/test_app/config/initializers/assets.rb
141
+ - spec/test_app/config/initializers/backtrace_silencers.rb
142
+ - spec/test_app/config/initializers/cookies_serializer.rb
143
+ - spec/test_app/config/initializers/filter_parameter_logging.rb
144
+ - spec/test_app/config/initializers/inflections.rb
145
+ - spec/test_app/config/initializers/mime_types.rb
146
+ - spec/test_app/config/initializers/notifyor.rb
147
+ - spec/test_app/config/initializers/session_store.rb
148
+ - spec/test_app/config/initializers/wrap_parameters.rb
149
+ - spec/test_app/config/locales/en.yml
150
+ - spec/test_app/config/routes.rb
151
+ - spec/test_app/config/secrets.yml
152
+ - spec/test_app/db/development.sqlite3
153
+ - spec/test_app/db/migrate/20160404044940_create_users.rb
154
+ - spec/test_app/db/schema.rb
155
+ - spec/test_app/log/development.log
156
+ - spec/test_app/public/404.html
157
+ - spec/test_app/public/422.html
158
+ - spec/test_app/public/500.html
159
+ - spec/test_app/public/favicon.ico
160
+ - spec/test_app/test/fixtures/users.yml
161
+ - spec/test_app/test/models/user_test.rb
162
+ homepage: https://github.com/ndea/notifyer
163
+ licenses:
164
+ - MIT
165
+ metadata: {}
166
+ post_install_message:
167
+ rdoc_options: []
168
+ require_paths:
169
+ - lib
170
+ required_ruby_version: !ruby/object:Gem::Requirement
171
+ requirements:
172
+ - - ">="
173
+ - !ruby/object:Gem::Version
174
+ version: '0'
175
+ required_rubygems_version: !ruby/object:Gem::Requirement
176
+ requirements:
177
+ - - ">="
178
+ - !ruby/object:Gem::Version
179
+ version: '0'
180
+ requirements: []
181
+ rubyforge_project:
182
+ rubygems_version: 2.4.8
183
+ signing_key:
184
+ specification_version: 4
185
+ summary: Get realtime notifications on your desktop if something happens in your Rails
186
+ app.
187
+ test_files:
188
+ - spec/spec_helper.rb
189
+ - spec/test_app/app/assets/javascripts/application.js
190
+ - spec/test_app/app/assets/stylesheets/application.css
191
+ - spec/test_app/app/controllers/application_controller.rb
192
+ - spec/test_app/app/helpers/application_helper.rb
193
+ - spec/test_app/app/models/user.rb
194
+ - spec/test_app/app/views/layouts/application.html.erb
195
+ - spec/test_app/bin/bundle
196
+ - spec/test_app/bin/rails
197
+ - spec/test_app/bin/rake
198
+ - spec/test_app/bin/setup
199
+ - spec/test_app/config/application.rb
200
+ - spec/test_app/config/boot.rb
201
+ - spec/test_app/config/database.yml
202
+ - spec/test_app/config/environment.rb
203
+ - spec/test_app/config/environments/development.rb
204
+ - spec/test_app/config/environments/production.rb
205
+ - spec/test_app/config/environments/test.rb
206
+ - spec/test_app/config/initializers/assets.rb
207
+ - spec/test_app/config/initializers/backtrace_silencers.rb
208
+ - spec/test_app/config/initializers/cookies_serializer.rb
209
+ - spec/test_app/config/initializers/filter_parameter_logging.rb
210
+ - spec/test_app/config/initializers/inflections.rb
211
+ - spec/test_app/config/initializers/mime_types.rb
212
+ - spec/test_app/config/initializers/notifyor.rb
213
+ - spec/test_app/config/initializers/session_store.rb
214
+ - spec/test_app/config/initializers/wrap_parameters.rb
215
+ - spec/test_app/config/locales/en.yml
216
+ - spec/test_app/config/routes.rb
217
+ - spec/test_app/config/secrets.yml
218
+ - spec/test_app/config.ru
219
+ - spec/test_app/db/development.sqlite3
220
+ - spec/test_app/db/migrate/20160404044940_create_users.rb
221
+ - spec/test_app/db/schema.rb
222
+ - spec/test_app/log/development.log
223
+ - spec/test_app/public/404.html
224
+ - spec/test_app/public/422.html
225
+ - spec/test_app/public/500.html
226
+ - spec/test_app/public/favicon.ico
227
+ - spec/test_app/Rakefile
228
+ - spec/test_app/README.rdoc
229
+ - spec/test_app/test/fixtures/users.yml
230
+ - spec/test_app/test/models/user_test.rb