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 +4 -4
- data/Rakefile +7 -0
- data/app/controllers/opsworks_helpers/application_controller.rb +2 -0
- data/app/views/application/status.html.haml +1 -0
- data/app/views/layouts/opsworks_helpers/application.html.haml +11 -0
- data/lib/opsworks_helpers/version.rb +1 -1
- metadata +5 -4
- data/app/views/layouts/opsworks_helpers/application.html.erb +0 -14
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a24732f2352838a569437fd2388fca6baa4c9952
|
|
4
|
+
data.tar.gz: 0ebffb524adfbb5445def02c5910f5e33ed04574
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 67ca53b809f6d0c3c57da081173f02655853288b8bb6932c356016e815e8de53223063a55dbd7ecfb8b424ff8c2f3c902bd176fbf56f2477709dac22fbad472e
|
|
7
|
+
data.tar.gz: afcdded05cedff41b5830e00917fac6d44b95a839d839313032b36eed80a28a243c4cb973ccb2b4a40b3d0a381bc15cf4b0197f996a7ed5f47cae5a6d9107ac6
|
data/Rakefile
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
%h1 Status
|
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.
|
|
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:
|
|
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/
|
|
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.
|
|
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>
|