g5_sibling_deployer_engine 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ababee9b2b0411a358fcfe6ddc203206b429e1b8
4
- data.tar.gz: 5bfe6c4fdaadecc1737f5acff00d1c00f422522d
3
+ metadata.gz: 4f9bd9f53b8bd1cc7a8749e578071e969d50e6e6
4
+ data.tar.gz: 3bcb8d3883ce3c6c13c336d5fb536df0bb08f30f
5
5
  SHA512:
6
- metadata.gz: 4d8d8059c5ca587924d2d3dcaeaa9e96db1d4680084671d408a3d5443f205ef7dd0540b8e6498388908b282dee0de4ec4b090b9c80ca590f43c709e6932c0dee
7
- data.tar.gz: aaedc384563e6d0e18673617e1a2c17c66e21cdc7089622b18ad813fdd33ee955332c35db63a0a0b41bf9679183a6609ff2f0643425087b254e0b5e3918d84f4
6
+ metadata.gz: f0c56311995e9fd80ee5e5c74e8ff470b6ffb399eeaaf44094f855ab3d9afb550085d0d82d740dbbf2ac4f43a1092ea55e26b74641de2f3eaefb00cbdba0b0d2
7
+ data.tar.gz: f9fbf850b892f1d45c24ffa0cb2db3864b28cdd97c8abe528ddb241fab6aab83d554f36ef2506ed601e19c8fd3bc3e1ba385309f39c43488fed38ad0c791e481
data/README.md CHANGED
@@ -8,7 +8,7 @@ Provides models, views, controllers, routes, and rake tasks for deploying Siblin
8
8
 
9
9
  ## Current Version
10
10
 
11
- 0.4.0
11
+ 0.4.1
12
12
 
13
13
 
14
14
  ## Requirements
@@ -19,15 +19,15 @@
19
19
  <tbody>
20
20
  <% @siblings_deploys.each do |t| %>
21
21
  <tr>
22
- <td>t.id</td>
23
- <td>t.created_at</td>
24
- <td>t.heroku_app_name</td>
25
- <td>t.state</td>
26
- <td>t.git_repo</td>
27
- <td>t.heroku_repo</td>
28
- <td>t.sibling_id</td>
29
- <td>t.instruction_id</td>
30
- <td>t.manual</td>
22
+ <td><%= t.id %></td>
23
+ <td><%= t.created_at %></td>
24
+ <td><%= t.heroku_app_name %></td>
25
+ <td><%= t.state %></td>
26
+ <td><%= t.git_repo %></td>
27
+ <td><%= t.heroku_repo %></td>
28
+ <td><%= t.sibling_id %></td>
29
+ <td><%= t.instruction_id %></td>
30
+ <td><%= t.manual %></td>
31
31
  </tr>
32
32
  <% end %>
33
33
  </tbody>
@@ -1,6 +1,6 @@
1
1
  <% title "Siblings" %>
2
2
 
3
- <%= render partial: "nav", locals: { page: :siblings } %>
3
+ <%= render partial: "siblings/nav", locals: { page: :siblings } %>
4
4
 
5
5
  <table class="table table-striped">
6
6
  <thead>
@@ -16,15 +16,15 @@
16
16
  <tbody>
17
17
  <% @siblings.each do |t| %>
18
18
  <tr>
19
- <td>t.id</td>
20
- <td>t.name</td>
21
- <td>t.heroku_app_name</td>
22
- <td>t.git_repo</td>
23
- <td>t.heroku_repo</td>
19
+ <td><%= t.id %></td>
20
+ <td><%= t.name %></td>
21
+ <td><%= t.heroku_app_name %></td>
22
+ <td><%= t.git_repo %></td>
23
+ <td><%= t.heroku_repo %></td>
24
24
  <td>
25
25
  <%= link_to 'UID', t.uid, class: "btn" %>
26
26
  <% unless t.main_app? %>
27
- <%= link_to "Deploy", deploy_sibling_path(t), class: "btn", method: post %>
27
+ <%= link_to "Deploy", deploy_sibling_path(t), class: "btn", method: :post %>
28
28
  <% end %>
29
29
  </td>
30
30
  </tr>
@@ -15,10 +15,10 @@
15
15
  <tbody>
16
16
  <% @siblings_instructions.each do |t| %>
17
17
  <tr>
18
- <td>t.id</td>
19
- <td>t.name</td>
20
- <td>t.published_at</td>
21
- <td>t.created_at</td>
18
+ <td><%= t.id %></td>
19
+ <td><%= t.name %></td>
20
+ <td><%= t.published_at %></td>
21
+ <td><%= t.created_at %></td>
22
22
  <td>
23
23
  <%= link_to 'UID', t.uid, class: "btn" %>
24
24
  </td>
@@ -1,3 +1,3 @@
1
1
  module G5SiblingDeployerEngine
2
- VERSION = "0.4.0"
2
+ VERSION = "0.4.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: g5_sibling_deployer_engine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jessica Lynn Suttles
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-04-25 00:00:00.000000000 Z
11
+ date: 2014-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails