sonic 0.0.2 → 0.1.3

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 (56) hide show
  1. checksums.yaml +7 -0
  2. data/Guardfile +1 -1
  3. data/fixture_rails_root/.gitignore +4 -3
  4. data/fixture_rails_root/Gemfile +28 -21
  5. data/fixture_rails_root/README.rdoc +15 -248
  6. data/fixture_rails_root/Rakefile +0 -1
  7. data/fixture_rails_root/app/{mailers/.gitkeep → assets/images/.keep} +0 -0
  8. data/fixture_rails_root/app/assets/javascripts/application.js +4 -3
  9. data/fixture_rails_root/app/controllers/application_controller.rb +3 -1
  10. data/fixture_rails_root/app/{models/.gitkeep → controllers/concerns/.keep} +0 -0
  11. data/fixture_rails_root/{lib/assets/.gitkeep → app/mailers/.keep} +0 -0
  12. data/fixture_rails_root/{lib/tasks/.gitkeep → app/models/.keep} +0 -0
  13. data/fixture_rails_root/{log/.gitkeep → app/models/concerns/.keep} +0 -0
  14. data/fixture_rails_root/app/views/layouts/application.html.erb +2 -2
  15. data/fixture_rails_root/bin/bundle +3 -0
  16. data/fixture_rails_root/bin/rails +4 -0
  17. data/fixture_rails_root/bin/rake +4 -0
  18. data/fixture_rails_root/config.ru +1 -1
  19. data/fixture_rails_root/config/application.rb +3 -42
  20. data/fixture_rails_root/config/boot.rb +1 -3
  21. data/fixture_rails_root/config/environment.rb +2 -2
  22. data/fixture_rails_root/config/environments/development.rb +11 -19
  23. data/fixture_rails_root/config/environments/production.rb +40 -27
  24. data/fixture_rails_root/config/environments/test.rb +13 -14
  25. data/fixture_rails_root/config/initializers/filter_parameter_logging.rb +4 -0
  26. data/fixture_rails_root/config/initializers/inflections.rb +6 -5
  27. data/fixture_rails_root/config/initializers/secret_token.rb +7 -2
  28. data/fixture_rails_root/config/initializers/session_store.rb +0 -5
  29. data/fixture_rails_root/config/initializers/wrap_parameters.rb +6 -6
  30. data/fixture_rails_root/config/locales/en.yml +20 -2
  31. data/fixture_rails_root/config/routes.rb +22 -24
  32. data/fixture_rails_root/{test/fixtures/.gitkeep → lib/assets/.keep} +0 -0
  33. data/fixture_rails_root/{test/functional/.gitkeep → lib/tasks/.keep} +0 -0
  34. data/fixture_rails_root/{test/integration/.gitkeep → log/.keep} +0 -0
  35. data/fixture_rails_root/public/404.html +43 -11
  36. data/fixture_rails_root/public/422.html +43 -11
  37. data/fixture_rails_root/public/500.html +43 -11
  38. data/fixture_rails_root/public/robots.txt +2 -2
  39. data/fixture_rails_root/test/{unit/.gitkeep → controllers/.keep} +0 -0
  40. data/fixture_rails_root/{vendor/assets/javascripts/.gitkeep → test/fixtures/.keep} +0 -0
  41. data/fixture_rails_root/{vendor/assets/stylesheets/.gitkeep → test/helpers/.keep} +0 -0
  42. data/fixture_rails_root/{vendor/plugins/.gitkeep → test/integration/.keep} +0 -0
  43. data/fixture_rails_root/test/mailers/.keep +0 -0
  44. data/fixture_rails_root/test/models/.keep +0 -0
  45. data/fixture_rails_root/test/test_helper.rb +4 -2
  46. data/fixture_rails_root/vendor/assets/javascripts/.keep +0 -0
  47. data/fixture_rails_root/vendor/assets/stylesheets/.keep +0 -0
  48. data/lib/sonic/protocols/tcp.rb +3 -3
  49. data/lib/sonic/version.rb +1 -1
  50. data/sonic.gemspec +12 -12
  51. data/spec/sonic/service_checker_spec.rb +1 -1
  52. metadata +81 -106
  53. data/fixture_rails_root/app/assets/images/rails.png +0 -0
  54. data/fixture_rails_root/public/index.html +0 -241
  55. data/fixture_rails_root/script/rails +0 -6
  56. data/fixture_rails_root/test/performance/browsing_test.rb +0 -12
@@ -2,17 +2,48 @@
2
2
  <html>
3
3
  <head>
4
4
  <title>The page you were looking for doesn't exist (404)</title>
5
- <style type="text/css">
6
- body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
- div.dialog {
8
- width: 25em;
9
- padding: 0 4em;
10
- margin: 4em auto 0 auto;
11
- border: 1px solid #ccc;
12
- border-right-color: #999;
13
- border-bottom-color: #999;
14
- }
15
- h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
16
47
  </style>
17
48
  </head>
18
49
 
@@ -22,5 +53,6 @@
22
53
  <h1>The page you were looking for doesn't exist.</h1>
23
54
  <p>You may have mistyped the address or the page may have moved.</p>
24
55
  </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
25
57
  </body>
26
58
  </html>
@@ -2,17 +2,48 @@
2
2
  <html>
3
3
  <head>
4
4
  <title>The change you wanted was rejected (422)</title>
5
- <style type="text/css">
6
- body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
- div.dialog {
8
- width: 25em;
9
- padding: 0 4em;
10
- margin: 4em auto 0 auto;
11
- border: 1px solid #ccc;
12
- border-right-color: #999;
13
- border-bottom-color: #999;
14
- }
15
- h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
16
47
  </style>
17
48
  </head>
18
49
 
@@ -22,5 +53,6 @@
22
53
  <h1>The change you wanted was rejected.</h1>
23
54
  <p>Maybe you tried to change something you didn't have access to.</p>
24
55
  </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
25
57
  </body>
26
58
  </html>
@@ -2,17 +2,48 @@
2
2
  <html>
3
3
  <head>
4
4
  <title>We're sorry, but something went wrong (500)</title>
5
- <style type="text/css">
6
- body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
- div.dialog {
8
- width: 25em;
9
- padding: 0 4em;
10
- margin: 4em auto 0 auto;
11
- border: 1px solid #ccc;
12
- border-right-color: #999;
13
- border-bottom-color: #999;
14
- }
15
- h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
16
47
  </style>
17
48
  </head>
18
49
 
@@ -21,5 +52,6 @@
21
52
  <div class="dialog">
22
53
  <h1>We're sorry, but something went wrong.</h1>
23
54
  </div>
55
+ <p>If you are the application owner check the logs for more information.</p>
24
56
  </body>
25
57
  </html>
@@ -1,5 +1,5 @@
1
- # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
1
+ # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
2
2
  #
3
3
  # To ban all spiders from the entire site uncomment the next two lines:
4
- # User-Agent: *
4
+ # User-agent: *
5
5
  # Disallow: /
File without changes
File without changes
@@ -1,9 +1,11 @@
1
- ENV["RAILS_ENV"] = "test"
1
+ ENV["RAILS_ENV"] ||= "test"
2
2
  require File.expand_path('../../config/environment', __FILE__)
3
3
  require 'rails/test_help'
4
4
 
5
5
  class ActiveSupport::TestCase
6
- # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
6
+ ActiveRecord::Migration.check_pending!
7
+
8
+ # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
7
9
  #
8
10
  # Note: You'll currently still have to declare fixtures explicitly in integration tests
9
11
  # -- they do not yet inherit this setting
@@ -19,9 +19,9 @@ module Sonic
19
19
  connection = TCPSocket.new(@host, @port)
20
20
  if @ssl_cert && @ssl_key
21
21
  ssl_context = OpenSSL::SSL::SSLContext.new()
22
- ssl_context.cert = OpenSSL::X509::Certificate.new(File.read("#{Dir.pwd}/ssl/#{@ssl_cert}"))
23
- ssl_context.ca_file = "#{Dir.pwd}/ssl/#{@ssl_cert}"
24
- ssl_context.key = OpenSSL::PKey::RSA.new(File.read("#{Dir.pwd}/ssl/#{@ssl_key}"))
22
+ ssl_context.cert = OpenSSL::X509::Certificate.new(File.read("#{Dir.pwd}/certs/#{@ssl_cert}"))
23
+ ssl_context.ca_file = "#{Dir.pwd}/certs/#{@ssl_cert}"
24
+ ssl_context.key = OpenSSL::PKey::RSA.new(File.read("#{Dir.pwd}/certs/#{@ssl_key}"))
25
25
  socket = OpenSSL::SSL::SSLSocket.new(connection, ssl_context)
26
26
  socket.sync_close = true
27
27
  socket.connect
@@ -1,3 +1,3 @@
1
1
  module Sonic
2
- VERSION = "0.0.2"
2
+ VERSION = "0.1.3"
3
3
  end
@@ -19,17 +19,17 @@ Gem::Specification.new do |spec|
19
19
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
20
20
  spec.require_paths = ["lib"]
21
21
 
22
- spec.add_dependency "rails", "~> 3.1"
23
- spec.add_dependency "bunny", "~> 0.10"
24
- spec.add_dependency "clockwork"
25
- spec.add_dependency "docile"
22
+ spec.add_dependency "rails", "~> 4.0"
23
+ spec.add_dependency "bunny", "~> 0"
24
+ spec.add_dependency "clockwork", "~> 0.7"
25
+ spec.add_dependency "docile", "~> 1.1"
26
26
  spec.add_development_dependency "bundler", "~> 1.3"
27
- spec.add_development_dependency "rake"
28
- spec.add_development_dependency "sqlite3"
29
- spec.add_development_dependency "rspec"
30
- spec.add_development_dependency "rspec-rails", "~> 2.6"
31
- spec.add_development_dependency "guard"
32
- spec.add_development_dependency "guard-rspec"
33
- spec.add_development_dependency "fuubar"
34
- spec.add_development_dependency "webmock"
27
+ spec.add_development_dependency "rake", "~> 10.2"
28
+ spec.add_development_dependency "sqlite3", "~> 1.3"
29
+ spec.add_development_dependency "rspec", "~> 2.14"
30
+ spec.add_development_dependency "rspec-rails", "~> 2.14"
31
+ spec.add_development_dependency "guard", "~> 2.6"
32
+ spec.add_development_dependency "guard-rspec", "~> 4.2"
33
+ spec.add_development_dependency "fuubar", "~> 1.3"
34
+ spec.add_development_dependency "webmock", "~> 1.17"
35
35
  end
@@ -128,7 +128,7 @@ module Sonic
128
128
  end
129
129
  describe '#error' do
130
130
  subject { service_checker.error }
131
- it { should == "Connection refused - connect(2)" }
131
+ it { should == %q{Connection refused - connect(2) for "localhost" port 6667} }
132
132
  end
133
133
  end
134
134
  end
metadata CHANGED
@@ -1,234 +1,207 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sonic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
5
- prerelease:
4
+ version: 0.1.3
6
5
  platform: ruby
7
6
  authors:
8
7
  - Michael Bulat
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-08-30 00:00:00.000000000 Z
11
+ date: 2014-03-25 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rails
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ~>
17
+ - - "~>"
20
18
  - !ruby/object:Gem::Version
21
- version: '3.1'
19
+ version: '4.0'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ~>
24
+ - - "~>"
28
25
  - !ruby/object:Gem::Version
29
- version: '3.1'
26
+ version: '4.0'
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: bunny
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ~>
31
+ - - "~>"
36
32
  - !ruby/object:Gem::Version
37
- version: '0.10'
33
+ version: '0'
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ~>
38
+ - - "~>"
44
39
  - !ruby/object:Gem::Version
45
- version: '0.10'
40
+ version: '0'
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: clockwork
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ! '>='
45
+ - - "~>"
52
46
  - !ruby/object:Gem::Version
53
- version: '0'
47
+ version: '0.7'
54
48
  type: :runtime
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ! '>='
52
+ - - "~>"
60
53
  - !ruby/object:Gem::Version
61
- version: '0'
54
+ version: '0.7'
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: docile
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
- - - ! '>='
59
+ - - "~>"
68
60
  - !ruby/object:Gem::Version
69
- version: '0'
61
+ version: '1.1'
70
62
  type: :runtime
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
- - - ! '>='
66
+ - - "~>"
76
67
  - !ruby/object:Gem::Version
77
- version: '0'
68
+ version: '1.1'
78
69
  - !ruby/object:Gem::Dependency
79
70
  name: bundler
80
71
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
72
  requirements:
83
- - - ~>
73
+ - - "~>"
84
74
  - !ruby/object:Gem::Version
85
75
  version: '1.3'
86
76
  type: :development
87
77
  prerelease: false
88
78
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
79
  requirements:
91
- - - ~>
80
+ - - "~>"
92
81
  - !ruby/object:Gem::Version
93
82
  version: '1.3'
94
83
  - !ruby/object:Gem::Dependency
95
84
  name: rake
96
85
  requirement: !ruby/object:Gem::Requirement
97
- none: false
98
86
  requirements:
99
- - - ! '>='
87
+ - - "~>"
100
88
  - !ruby/object:Gem::Version
101
- version: '0'
89
+ version: '10.2'
102
90
  type: :development
103
91
  prerelease: false
104
92
  version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
93
  requirements:
107
- - - ! '>='
94
+ - - "~>"
108
95
  - !ruby/object:Gem::Version
109
- version: '0'
96
+ version: '10.2'
110
97
  - !ruby/object:Gem::Dependency
111
98
  name: sqlite3
112
99
  requirement: !ruby/object:Gem::Requirement
113
- none: false
114
100
  requirements:
115
- - - ! '>='
101
+ - - "~>"
116
102
  - !ruby/object:Gem::Version
117
- version: '0'
103
+ version: '1.3'
118
104
  type: :development
119
105
  prerelease: false
120
106
  version_requirements: !ruby/object:Gem::Requirement
121
- none: false
122
107
  requirements:
123
- - - ! '>='
108
+ - - "~>"
124
109
  - !ruby/object:Gem::Version
125
- version: '0'
110
+ version: '1.3'
126
111
  - !ruby/object:Gem::Dependency
127
112
  name: rspec
128
113
  requirement: !ruby/object:Gem::Requirement
129
- none: false
130
114
  requirements:
131
- - - ! '>='
115
+ - - "~>"
132
116
  - !ruby/object:Gem::Version
133
- version: '0'
117
+ version: '2.14'
134
118
  type: :development
135
119
  prerelease: false
136
120
  version_requirements: !ruby/object:Gem::Requirement
137
- none: false
138
121
  requirements:
139
- - - ! '>='
122
+ - - "~>"
140
123
  - !ruby/object:Gem::Version
141
- version: '0'
124
+ version: '2.14'
142
125
  - !ruby/object:Gem::Dependency
143
126
  name: rspec-rails
144
127
  requirement: !ruby/object:Gem::Requirement
145
- none: false
146
128
  requirements:
147
- - - ~>
129
+ - - "~>"
148
130
  - !ruby/object:Gem::Version
149
- version: '2.6'
131
+ version: '2.14'
150
132
  type: :development
151
133
  prerelease: false
152
134
  version_requirements: !ruby/object:Gem::Requirement
153
- none: false
154
135
  requirements:
155
- - - ~>
136
+ - - "~>"
156
137
  - !ruby/object:Gem::Version
157
- version: '2.6'
138
+ version: '2.14'
158
139
  - !ruby/object:Gem::Dependency
159
140
  name: guard
160
141
  requirement: !ruby/object:Gem::Requirement
161
- none: false
162
142
  requirements:
163
- - - ! '>='
143
+ - - "~>"
164
144
  - !ruby/object:Gem::Version
165
- version: '0'
145
+ version: '2.6'
166
146
  type: :development
167
147
  prerelease: false
168
148
  version_requirements: !ruby/object:Gem::Requirement
169
- none: false
170
149
  requirements:
171
- - - ! '>='
150
+ - - "~>"
172
151
  - !ruby/object:Gem::Version
173
- version: '0'
152
+ version: '2.6'
174
153
  - !ruby/object:Gem::Dependency
175
154
  name: guard-rspec
176
155
  requirement: !ruby/object:Gem::Requirement
177
- none: false
178
156
  requirements:
179
- - - ! '>='
157
+ - - "~>"
180
158
  - !ruby/object:Gem::Version
181
- version: '0'
159
+ version: '4.2'
182
160
  type: :development
183
161
  prerelease: false
184
162
  version_requirements: !ruby/object:Gem::Requirement
185
- none: false
186
163
  requirements:
187
- - - ! '>='
164
+ - - "~>"
188
165
  - !ruby/object:Gem::Version
189
- version: '0'
166
+ version: '4.2'
190
167
  - !ruby/object:Gem::Dependency
191
168
  name: fuubar
192
169
  requirement: !ruby/object:Gem::Requirement
193
- none: false
194
170
  requirements:
195
- - - ! '>='
171
+ - - "~>"
196
172
  - !ruby/object:Gem::Version
197
- version: '0'
173
+ version: '1.3'
198
174
  type: :development
199
175
  prerelease: false
200
176
  version_requirements: !ruby/object:Gem::Requirement
201
- none: false
202
177
  requirements:
203
- - - ! '>='
178
+ - - "~>"
204
179
  - !ruby/object:Gem::Version
205
- version: '0'
180
+ version: '1.3'
206
181
  - !ruby/object:Gem::Dependency
207
182
  name: webmock
208
183
  requirement: !ruby/object:Gem::Requirement
209
- none: false
210
184
  requirements:
211
- - - ! '>='
185
+ - - "~>"
212
186
  - !ruby/object:Gem::Version
213
- version: '0'
187
+ version: '1.17'
214
188
  type: :development
215
189
  prerelease: false
216
190
  version_requirements: !ruby/object:Gem::Requirement
217
- none: false
218
191
  requirements:
219
- - - ! '>='
192
+ - - "~>"
220
193
  - !ruby/object:Gem::Version
221
- version: '0'
222
- description: ! "Sonic is a Rails engine which provides a status page for your applications\n
223
- \ services, along with a number of tools to periodically
224
- check those services."
194
+ version: '1.17'
195
+ description: |-
196
+ Sonic is a Rails engine which provides a status page for your applications
197
+ services, along with a number of tools to periodically check those services.
225
198
  email:
226
199
  - mbulat@crazydogsoftware.com
227
200
  executables: []
228
201
  extensions: []
229
202
  extra_rdoc_files: []
230
203
  files:
231
- - .gitignore
204
+ - ".gitignore"
232
205
  - Gemfile
233
206
  - Guardfile
234
207
  - LICENSE.txt
@@ -241,14 +214,19 @@ files:
241
214
  - fixture_rails_root/Gemfile
242
215
  - fixture_rails_root/README.rdoc
243
216
  - fixture_rails_root/Rakefile
244
- - fixture_rails_root/app/assets/images/rails.png
217
+ - fixture_rails_root/app/assets/images/.keep
245
218
  - fixture_rails_root/app/assets/javascripts/application.js
246
219
  - fixture_rails_root/app/assets/stylesheets/application.css
247
220
  - fixture_rails_root/app/controllers/application_controller.rb
221
+ - fixture_rails_root/app/controllers/concerns/.keep
248
222
  - fixture_rails_root/app/helpers/application_helper.rb
249
- - fixture_rails_root/app/mailers/.gitkeep
250
- - fixture_rails_root/app/models/.gitkeep
223
+ - fixture_rails_root/app/mailers/.keep
224
+ - fixture_rails_root/app/models/.keep
225
+ - fixture_rails_root/app/models/concerns/.keep
251
226
  - fixture_rails_root/app/views/layouts/application.html.erb
227
+ - fixture_rails_root/bin/bundle
228
+ - fixture_rails_root/bin/rails
229
+ - fixture_rails_root/bin/rake
252
230
  - fixture_rails_root/config.ru
253
231
  - fixture_rails_root/config/application.rb
254
232
  - fixture_rails_root/config/boot.rb
@@ -258,6 +236,7 @@ files:
258
236
  - fixture_rails_root/config/environments/production.rb
259
237
  - fixture_rails_root/config/environments/test.rb
260
238
  - fixture_rails_root/config/initializers/backtrace_silencers.rb
239
+ - fixture_rails_root/config/initializers/filter_parameter_logging.rb
261
240
  - fixture_rails_root/config/initializers/inflections.rb
262
241
  - fixture_rails_root/config/initializers/mime_types.rb
263
242
  - fixture_rails_root/config/initializers/secret_token.rb
@@ -266,25 +245,23 @@ files:
266
245
  - fixture_rails_root/config/locales/en.yml
267
246
  - fixture_rails_root/config/routes.rb
268
247
  - fixture_rails_root/db/seeds.rb
269
- - fixture_rails_root/lib/assets/.gitkeep
270
- - fixture_rails_root/lib/tasks/.gitkeep
271
- - fixture_rails_root/log/.gitkeep
248
+ - fixture_rails_root/lib/assets/.keep
249
+ - fixture_rails_root/lib/tasks/.keep
250
+ - fixture_rails_root/log/.keep
272
251
  - fixture_rails_root/public/404.html
273
252
  - fixture_rails_root/public/422.html
274
253
  - fixture_rails_root/public/500.html
275
254
  - fixture_rails_root/public/favicon.ico
276
- - fixture_rails_root/public/index.html
277
255
  - fixture_rails_root/public/robots.txt
278
- - fixture_rails_root/script/rails
279
- - fixture_rails_root/test/fixtures/.gitkeep
280
- - fixture_rails_root/test/functional/.gitkeep
281
- - fixture_rails_root/test/integration/.gitkeep
282
- - fixture_rails_root/test/performance/browsing_test.rb
256
+ - fixture_rails_root/test/controllers/.keep
257
+ - fixture_rails_root/test/fixtures/.keep
258
+ - fixture_rails_root/test/helpers/.keep
259
+ - fixture_rails_root/test/integration/.keep
260
+ - fixture_rails_root/test/mailers/.keep
261
+ - fixture_rails_root/test/models/.keep
283
262
  - fixture_rails_root/test/test_helper.rb
284
- - fixture_rails_root/test/unit/.gitkeep
285
- - fixture_rails_root/vendor/assets/javascripts/.gitkeep
286
- - fixture_rails_root/vendor/assets/stylesheets/.gitkeep
287
- - fixture_rails_root/vendor/plugins/.gitkeep
263
+ - fixture_rails_root/vendor/assets/javascripts/.keep
264
+ - fixture_rails_root/vendor/assets/stylesheets/.keep
288
265
  - lib/generators/USAGE
289
266
  - lib/generators/sonic_generator.rb
290
267
  - lib/generators/templates/README
@@ -304,29 +281,27 @@ files:
304
281
  homepage: http://github.com/sonic
305
282
  licenses:
306
283
  - MIT
284
+ metadata: {}
307
285
  post_install_message:
308
286
  rdoc_options: []
309
287
  require_paths:
310
288
  - lib
311
289
  required_ruby_version: !ruby/object:Gem::Requirement
312
- none: false
313
290
  requirements:
314
- - - ! '>='
291
+ - - ">="
315
292
  - !ruby/object:Gem::Version
316
293
  version: '0'
317
294
  required_rubygems_version: !ruby/object:Gem::Requirement
318
- none: false
319
295
  requirements:
320
- - - ! '>='
296
+ - - ">="
321
297
  - !ruby/object:Gem::Version
322
298
  version: '0'
323
299
  requirements: []
324
300
  rubyforge_project:
325
- rubygems_version: 1.8.23
301
+ rubygems_version: 2.2.2
326
302
  signing_key:
327
- specification_version: 3
303
+ specification_version: 4
328
304
  summary: Sonic is a Rails Engine status page and services checker.
329
305
  test_files:
330
306
  - spec/sonic/service_checker_spec.rb
331
307
  - spec/spec_helper.rb
332
- has_rdoc: