slack_notification_generator 0.2.0 → 0.2.1

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: ced1522063f519f5324f9712ee6db8a5f9b45d6c
4
- data.tar.gz: b90e3bea8ec0f8f180e563d83dd2e0aeccb4c25f
3
+ metadata.gz: c92e557c082675524c2cd2b4f4a7abff920c47f6
4
+ data.tar.gz: ca31b3cafc1a7887470385200e67225326c52bdc
5
5
  SHA512:
6
- metadata.gz: 847def4c725100e3e0fe0cd42db0523eea8b93089fd85edd579c398923ecba0aca79fb3ca5eadcb6e13f6f0892372ab39ee132a9127debe6cd4a22a2c26e2c77
7
- data.tar.gz: 43c4fb6895e680f64fd7756e3f618557de52bcbd69b60d7e2ce31fed88de1323fe18dfcfcba586358c6587f034153323d08bdda2634be4a205df36afeaa8ccb6
6
+ metadata.gz: 83396a197b21a4387651cae398c14f917ad48710f35c8385e05d1725ca0808c4f09ade9b5b84b4f1ccd6282b5b519994439662cff117166e127f6880c1e3401c
7
+ data.tar.gz: 7daf27c7d20fd0bd729c96a801896b3e391b8837ea3fc0207d6755133ebfac9723517025c8a3235e32237f12ab98f6a699ee947048b9184777d12fff62892146
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Change Log
2
2
 
3
+ ## [v0.2.0](https://github.com/jasonhutchens/slack_notification_generator/tree/v0.2.0) (2015-08-29)
4
+ [Full Changelog](https://github.com/jasonhutchens/slack_notification_generator/compare/v0.1.1...v0.2.0)
5
+
3
6
  ## [v0.1.1](https://github.com/jasonhutchens/slack_notification_generator/tree/v0.1.1) (2015-08-29)
4
7
  [Full Changelog](https://github.com/jasonhutchens/slack_notification_generator/compare/v0.1.0...v0.1.1)
5
8
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0
1
+ 0.2.1
@@ -179,7 +179,7 @@ class SlackNotificationGenerator
179
179
  end
180
180
  extras = [issues, commit[:authors].join(', '), time].compact.join(', ')
181
181
  if commit[:message].length > 50
182
- commit[:message] = commit[:message][0, 47] + "..."
182
+ commit[:message] = commit[:message][0, 50] + "..."
183
183
  end
184
184
  <<-eos
185
185
  #{link} #{commit[:message]} [#{extras}]
@@ -2,11 +2,11 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: slack_notification_generator 0.2.0 ruby lib
5
+ # stub: slack_notification_generator 0.2.1 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "slack_notification_generator"
9
- s.version = "0.2.0"
9
+ s.version = "0.2.1"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slack_notification_generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Hutchens