samson_hipchat 0.1.5 → 0.1.6

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: a9a089b06747f9e57178c11807a6b219e486d545
4
- data.tar.gz: 51fcf64e2a2e435eb584863abc8a847f4ce7feb3
3
+ metadata.gz: 573df27b53415140fe01a7695270a35723d6c67b
4
+ data.tar.gz: 877615a97fc1ee63bea45f5e8851e1d11b2530d7
5
5
  SHA512:
6
- metadata.gz: 7aefd6954f9d55b83ae29baab0e8a74cd2a3ccb29f025a15c2b51ce9660a419a8756b27cec86b4c4633bc17f56cca08de8d4433d14733089f7bbb9b9b2a7c107
7
- data.tar.gz: 24abe14fa1630fbf9018081b5b1f56d9327ede1ac4a1105d9e8bba186433adf1897ac2b0b3936e7dc4dd3dab52618f2b2ef73e394fc60808899448643f46444a
6
+ metadata.gz: 004fe082b6b719d20bbfa90cc3722250d7c307c8b49d7926b0d0f41bcc709e6e80eae2f7aa8df8d6cfe847e6bb1c64246faa77a846d05343939c5a7aa96e4110
7
+ data.tar.gz: 21a37ba20d1a514867d90767e9ca654f008d9c821b93db11723f9bd34b20883a73b64cc8dff752a440c9cc27cbd9565a415fc15cffb17ab6a9acca9920ba16eb
@@ -1,5 +1,6 @@
1
1
  class HipchatNotificationRenderer
2
2
  def self.render(deploy, subject, opt = {})
3
+ opt = {:is_multi_message => false}.merge opt
3
4
  controller = ActionController::Base.new
4
5
  view = ActionView::Base.new(File.expand_path("../../views/samson_hipchat", __FILE__), {}, controller)
5
6
  locals = { deploy: deploy, changeset: deploy.changeset, subject: subject, option: opt }
@@ -1,12 +1,12 @@
1
1
  <%= subject %>
2
- <p>&nbsp;&nbsp;<%= deploy.try(:message).gsub("\n","<br>") %> </p>
2
+ <p>&nbsp;&nbsp;<%= deploy.try(:message).gsub("\n","<br>") %></p>
3
3
 
4
4
  <% if option[:is_multi_message] %>
5
- <% if changeset.commits.count == 0 %>
6
- There are no new commits since last time.
7
- <% else %>
8
- <%= pluralize changeset.commits.count, "commit" %> by <%= changeset.author_names.to_sentence %>.
9
- <br>
5
+ <% if changeset.commits.count == 0 %>
6
+ There are no new commits since last time.
7
+ <% else %>
8
+ <%= pluralize changeset.commits.count, "commit" %> by <%= changeset.author_names.to_sentence %>.
9
+ <br>
10
10
  <% end %>
11
11
 
12
12
  <% if false %>
@@ -23,10 +23,9 @@
23
23
  <ol>
24
24
  <% changeset.commits.each do |commit| %>
25
25
  <% if !commit.summary.start_with?("Merge pull request") %>
26
- <li><a href='<%= commit.url %>'>(<%= commit.author_name %>)</a>: <%= commit.summary %></li>
26
+ <li><a href='<%= commit.url %>'>(<%= commit.author_name %>)</a>: <%= commit.summary %></li>
27
27
  <% end %>
28
28
  <% end %>
29
29
  </ol>
30
30
  <% end %>
31
-
32
31
  <% end %>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: samson_hipchat
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vinh Nguyen