easymon 1.2.1 → 1.2.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of easymon might be problematic. Click here for more details.

@@ -1 +1 @@
1
- o: ActiveSupport::Cache::Entry: @valuei:@created_atf1403613313.401854:@expires_in0
1
+ o: ActiveSupport::Cache::Entry: @valuei:@created_atf1411086872.434502:@expires_in0
@@ -31,3 +31,7 @@ class ActionController::TestCase
31
31
  Easymon::Repository.names.each {|name| Easymon::Repository.remove(name)}
32
32
  end
33
33
  end
34
+
35
+ # setting up mocha *after* we load the test libraries as per
36
+ # http://gofreerange.com/mocha/docs/
37
+ require 'mocha/mini_test'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easymon
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Anderson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-14 00:00:00.000000000 Z
11
+ date: 2015-01-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
@@ -119,15 +119,8 @@ files:
119
119
  - LICENSE
120
120
  - README.md
121
121
  - Rakefile
122
- - app/assets/javascripts/easymon/application.js
123
- - app/assets/javascripts/easymon/checks.js
124
- - app/assets/stylesheets/easymon/application.css
125
- - app/assets/stylesheets/easymon/checks.css
126
122
  - app/controllers/easymon/application_controller.rb
127
123
  - app/controllers/easymon/checks_controller.rb
128
- - app/helpers/easymon/application_helper.rb
129
- - app/helpers/easymon/checks_helper.rb
130
- - app/views/layouts/easymon/application.html.erb
131
124
  - config/routes.rb
132
125
  - lib/easymon.rb
133
126
  - lib/easymon/checklist.rb
@@ -218,7 +211,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
218
211
  version: '0'
219
212
  requirements: []
220
213
  rubyforge_project:
221
- rubygems_version: 2.2.2
214
+ rubygems_version: 2.4.5
222
215
  signing_key:
223
216
  specification_version: 4
224
217
  summary: Simple availability checks for your rails app
@@ -1,15 +0,0 @@
1
- // This is a manifest file that'll be compiled into application.js, which will include all the files
2
- // listed below.
3
- //
4
- // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
- // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
- //
7
- // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
- // the compiled file.
9
- //
10
- // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
11
- // GO AFTER THE REQUIRES BELOW.
12
- //
13
- //= require jquery
14
- //= require jquery_ujs
15
- //= require_tree .
@@ -1,2 +0,0 @@
1
- // Place all the behaviors and hooks related to the matching controller here.
2
- // All this logic will automatically be available in application.js.
@@ -1,13 +0,0 @@
1
- /*
2
- * This is a manifest file that'll be compiled into application.css, which will include all the files
3
- * listed below.
4
- *
5
- * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
- * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
- *
8
- * You're free to add application-wide styles to this file and they'll appear at the top of the
9
- * compiled file, but it's generally better to create a new file per style scope.
10
- *
11
- *= require_self
12
- *= require_tree .
13
- */
@@ -1,4 +0,0 @@
1
- /*
2
- Place all the styles related to the matching controller here.
3
- They will automatically be included in application.css.
4
- */
@@ -1,4 +0,0 @@
1
- module Easymon
2
- module ApplicationHelper
3
- end
4
- end
@@ -1,4 +0,0 @@
1
- module Easymon
2
- module ChecksHelper
3
- end
4
- end
@@ -1,14 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>Easymon</title>
5
- <%= stylesheet_link_tag "easymon/application", :media => "all" %>
6
- <%= javascript_include_tag "easymon/application" %>
7
- <%= csrf_meta_tags %>
8
- </head>
9
- <body>
10
-
11
- <%= yield %>
12
-
13
- </body>
14
- </html>