infopark_opsworks_helpers 0.2.1 → 0.2.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9ab16c2081c143434e0bbd05bbfd476701f06e51
4
- data.tar.gz: 81d3988949d9855f622b9da592f477c68be9bda9
3
+ metadata.gz: a24732f2352838a569437fd2388fca6baa4c9952
4
+ data.tar.gz: 0ebffb524adfbb5445def02c5910f5e33ed04574
5
5
  SHA512:
6
- metadata.gz: 241313224c4e10645be044566bf352a0f0eef695a3131b0f959910c7631373beac0627b8ebdf1c8a81192f27bcb6c0c87a6f5e8494688da530d275f4ee8a23b1
7
- data.tar.gz: 0bfc5ab53128488a6133094dd7c3300569eb753468c1ae0711ce2a04a40ff602199ef91e18b3e8ca2a875b5d9dbf7d799f4000f7e16cba9258fd91773d8ca6f8
6
+ metadata.gz: 67ca53b809f6d0c3c57da081173f02655853288b8bb6932c356016e815e8de53223063a55dbd7ecfb8b424ff8c2f3c902bd176fbf56f2477709dac22fbad472e
7
+ data.tar.gz: afcdded05cedff41b5830e00917fac6d44b95a839d839313032b36eed80a28a243c4cb973ccb2b4a40b3d0a381bc15cf4b0197f996a7ed5f47cae5a6d9107ac6
data/Rakefile CHANGED
@@ -20,3 +20,10 @@ load 'rails/tasks/engine.rake'
20
20
  load 'rails/tasks/statistics.rake'
21
21
 
22
22
  Bundler::GemHelper.install_tasks
23
+
24
+ begin
25
+ require 'rspec/core/rake_task'
26
+ RSpec::Core::RakeTask.new(:spec)
27
+ task :default => :spec
28
+ rescue LoadError
29
+ end
@@ -1,6 +1,8 @@
1
1
  module OpsworksHelpers
2
2
  class ApplicationController < ActionController::Base
3
3
 
4
+ newrelic_ignore if defined?(NewRelic) && respond_to?(:newrelic_ignore)
5
+
4
6
  def healthcheck
5
7
  head 200
6
8
  end
@@ -0,0 +1 @@
1
+ %h1 Status
@@ -0,0 +1,11 @@
1
+ !!!
2
+ %html
3
+ %head
4
+ %title OpsworksHelpers
5
+ = stylesheet_link_tag "opsworks_helpers/application", media: "all"
6
+ = javascript_include_tag "opsworks_helpers/application"
7
+ = csrf_meta_tags
8
+
9
+ %body
10
+
11
+ = yield
@@ -1,3 +1,3 @@
1
1
  module OpsworksHelpers
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: infopark_opsworks_helpers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Infopark AG
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-11-25 00:00:00.000000000 Z
12
+ date: 2016-06-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -121,7 +121,8 @@ files:
121
121
  - app/assets/stylesheets/opsworks_helpers/application.css
122
122
  - app/controllers/opsworks_helpers/application_controller.rb
123
123
  - app/helpers/opsworks_helpers/application_helper.rb
124
- - app/views/layouts/opsworks_helpers/application.html.erb
124
+ - app/views/application/status.html.haml
125
+ - app/views/layouts/opsworks_helpers/application.html.haml
125
126
  - config/routes.rb
126
127
  - lib/opsworks_helpers.rb
127
128
  - lib/opsworks_helpers/deploy.rb
@@ -148,7 +149,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
148
149
  version: '0'
149
150
  requirements: []
150
151
  rubyforge_project:
151
- rubygems_version: 2.4.5.1
152
+ rubygems_version: 2.5.1
152
153
  signing_key:
153
154
  specification_version: 4
154
155
  summary: Provides little helper functions for managing AWS OpsWorks stacks.
@@ -1,14 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>OpsworksHelpers</title>
5
- <%= stylesheet_link_tag "opsworks_helpers/application", media: "all" %>
6
- <%= javascript_include_tag "opsworks_helpers/application" %>
7
- <%= csrf_meta_tags %>
8
- </head>
9
- <body>
10
-
11
- <%= yield %>
12
-
13
- </body>
14
- </html>