capistrano_mailer_railsless 3.2.6 → 3.2.7

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.
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "capistrano_mailer_railsless"
3
- s.version = "3.2.6"
3
+ s.version = "3.2.7"
4
4
 
5
5
  s.authors = ["3Crowd Technologies, Inc.", "Justin Lynn", "Peter Boling", "Dave Nolan"]
6
6
 
@@ -54,7 +54,8 @@ class CapRailslessMailer < ActionMailer::Base
54
54
  :latest_revision => cap.latest_revision,
55
55
  :previous_revision => cap.previous_revision,
56
56
  :run_method => cap.run_method,
57
- :latest_release => cap.latest_release
57
+ :latest_release => cap.latest_release,
58
+ :user => cap.user
58
59
  }))
59
60
 
60
61
  @date = Date.today.to_s
@@ -19,6 +19,7 @@
19
19
  <% end %>
20
20
 
21
21
  <p style="margin: 10px 20px; font-weight: bold;">Released: <%= @date %> at <%= @time %></p>
22
+ <p style="margin: 10px 20px; font-weight: bold;">Released By: <%= @config[:user] %></p>
22
23
 
23
24
  <%= @sections.map { |section|
24
25
  data = @section_data[section.to_sym]
@@ -4,7 +4,8 @@
4
4
  <%= @site_name %> <%=@task_name.titleize unless @task_name.nil? %>
5
5
  ===========================================================
6
6
  Released: <%= @date %> at <%= @time %>
7
-
7
+ Released By: <%= @config[:user] %>
8
+
8
9
  <% @sections.each do |section| %>
9
10
  <% data = @section_data[section.to_sym] %>
10
11
  <% if !data.empty? %>
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano_mailer_railsless
3
3
  version: !ruby/object:Gem::Version
4
- hash: 3
4
+ hash: 1
5
5
  prerelease: false
6
6
  segments:
7
7
  - 3
8
8
  - 2
9
- - 6
10
- version: 3.2.6
9
+ - 7
10
+ version: 3.2.7
11
11
  platform: ruby
12
12
  authors:
13
13
  - 3Crowd Technologies, Inc.