lolcommits-flowdock 0.3.3 → 0.4.0

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
  SHA256:
3
- metadata.gz: c808e851d1c3c6f14f0632c14121c09f4c9d90ce2ab529ea76d0806cd27a7bb4
4
- data.tar.gz: bbd7b180a1e9f40179765ab01318ef27b8732f28de745b9dca03959e857e4d15
3
+ metadata.gz: 71ce3ec0acc7158f7b0f7a3c0aaea489b01c9c2efab870051002a2a0becf08ba
4
+ data.tar.gz: 9b7ad8fd4aba025f2c18c34f99d9ce1c2361ba89634271046f913b40e1a79a8a
5
5
  SHA512:
6
- metadata.gz: b944427cca55f026a689f6f37511069d0e189984864c48052ce14e13f44dee7dfd28ca96db0d03e1660611ff8b634429f03b1a145268abe0ae627d9b8529a993
7
- data.tar.gz: 4038105e087660ce136914de95d6e19ea5853608e35208430bca879fa8ff6a7acdb9d120db00d99de0c1aaf750cbb5ec447a6d18addfb42352c2264a7c64d162
6
+ metadata.gz: 441779a7f181ab3df480bd4b16b698c37cb5324cc8a84946119ceed1d3162ff1856239fa5ecb67dd0516fe6e0940e66bc53c6a092d9696af037ed9cddfeb4ac1
7
+ data.tar.gz: dbddc4e4f0d61b5137f9e1109f80c21ba48c88059991e964d891a2f62f6d09d9e4bffa8367850ff48438abb200ea0325e992990fb0b4c3e9c7eb3a9e800dbb5f
@@ -2,13 +2,17 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- The format is based on [Keep a Changelog][KeepAChangelog] and this
6
- project adheres to [Semantic Versioning][Semver].
5
+ The format is based on [Keep a Changelog][KeepAChangelog] and this project
6
+ adheres to [Semantic Versioning][Semver].
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
10
  - Your contribution here!
11
11
 
12
+ ## [0.4.0] - 2019-08-25
13
+ ### Changed
14
+ - Require an up-to-date `rest-client` (`>= 2.1.0`)
15
+
12
16
  ## [0.3.3] - 2019-05-20
13
17
  ### Changed
14
18
  - More liberal lolcommits dependency check
@@ -67,7 +71,8 @@ project adheres to [Semantic Versioning][Semver].
67
71
  ### Changed
68
72
  - Initial release
69
73
 
70
- [Unreleased]: https://github.com/lolcommits/lolcommits-flowdock/compare/v0.3.3...HEAD
74
+ [Unreleased]: https://github.com/lolcommits/lolcommits-flowdock/compare/v0.4.0...HEAD
75
+ [0.4.0]: https://github.com/lolcommits/lolcommits-flowdock/compare/v0.3.3...v0.4.0
71
76
  [0.3.3]: https://github.com/lolcommits/lolcommits-flowdock/compare/v0.3.2...v0.3.3
72
77
  [0.3.2]: https://github.com/lolcommits/lolcommits-flowdock/compare/v0.3.1...v0.3.2
73
78
  [0.3.1]: https://github.com/lolcommits/lolcommits-flowdock/compare/v0.2.0...v0.3.1
data/README.md CHANGED
@@ -6,12 +6,12 @@
6
6
  [![Maintainability](https://api.codeclimate.com/v1/badges/ad7324f710e10daffd52/maintainability)](https://codeclimate.com/github/lolcommits/lolcommits-flowdock/maintainability)
7
7
  [![Test Coverage](https://api.codeclimate.com/v1/badges/ad7324f710e10daffd52/test_coverage)](https://codeclimate.com/github/lolcommits/lolcommits-flowdock/test_coverage)
8
8
 
9
- [lolcommits](https://lolcommits.github.io/) takes a snapshot with your
10
- webcam every time you git commit code, and archives a lolcat style image
11
- with it. Git blame has never been so much fun!
9
+ [lolcommits](https://lolcommits.github.io/) takes a snapshot with your webcam
10
+ every time you git commit code, and archives a lolcat style image with it. Git
11
+ blame has never been so much fun!
12
12
 
13
- This plugin automatically posts lolcommits to a Flowdock flow (room)
14
- with the `#lolcommits` hashtag. They wll appear like this:
13
+ This plugin automatically posts lolcommits to a Flowdock flow (room) with the
14
+ `#lolcommits` hashtag. They wll appear like this:
15
15
 
16
16
  ![example
17
17
  commit](https://github.com/lolcommits/lolcommits-flowdock/raw/master/assets/images/example-commit.png)
@@ -38,20 +38,20 @@ Then configure to enable with:
38
38
  # set your Flowdock organization (tab to autocomplete)
39
39
  # set the Flowdock flow to post messages to (tab to autocomplete)
40
40
 
41
- That's it! Your next lolcommit will be posted as a new message to the
42
- flow. To disable uninstall this gem or use:
41
+ That's it! Your next lolcommit will be posted as a new message to the flow. To
42
+ disable uninstall this gem or use:
43
43
 
44
44
  $ lolcommits --config -p flowdock
45
45
  # and set enabled to `false`
46
46
 
47
47
  ## Development
48
48
 
49
- Check out this repo and run `bin/setup`, this will install all
50
- dependencies and generate docs. Use `bundle exec rake` to run all tests
51
- and generate a coverage report.
49
+ Check out this repo and run `bin/setup`, this will install all dependencies and
50
+ generate docs. Use `bundle exec rake` to run all tests and generate a coverage
51
+ report.
52
52
 
53
- You can also run `bin/console` for an interactive prompt, allowing you
54
- to experiment with the gem code.
53
+ You can also run `bin/console` for an interactive prompt, allowing you to
54
+ experiment with the gem code.
55
55
 
56
56
  ## Tests
57
57
 
@@ -68,28 +68,25 @@ Generate docs for this gem with:
68
68
  ## Troubles?
69
69
 
70
70
  If you think something is broken or missing, please raise a new
71
- [issue](https://github.com/lolcommits/lolcommits-flowdock/issues). Take
72
- a moment to check it hasn't been raised in the past (and possibly
73
- closed).
71
+ [issue](https://github.com/lolcommits/lolcommits-flowdock/issues). Take a moment
72
+ to check it hasn't been raised in the past (and possibly closed).
74
73
 
75
74
  ## Contributing
76
75
 
77
- Bug [reports](https://github.com/lolcommits/lolcommits-flowdock/issues)
78
- and [pull
79
- requests](https://github.com/lolcommits/lolcommits-flowdock/pulls) are
76
+ Bug [reports](https://github.com/lolcommits/lolcommits-flowdock/issues) and
77
+ [pull requests](https://github.com/lolcommits/lolcommits-flowdock/pulls) are
80
78
  welcome on GitHub.
81
79
 
82
- When submitting pull requests, remember to add tests covering any new
83
- behaviour, and ensure all tests are passing on [Travis
80
+ When submitting pull requests, remember to add tests covering any new behaviour,
81
+ and ensure all tests are passing on [Travis
84
82
  CI](https://travis-ci.com/lolcommits/lolcommits-flowdock). Read the
85
83
  [contributing
86
84
  guidelines](https://github.com/lolcommits/lolcommits-flowdock/blob/master/CONTRIBUTING.md)
87
85
  for more details.
88
86
 
89
- This project is intended to be a safe, welcoming space for
90
- collaboration, and contributors are expected to adhere to the
91
- [Contributor Covenant](http://contributor-covenant.org) code of conduct.
92
- See
87
+ This project is intended to be a safe, welcoming space for collaboration, and
88
+ contributors are expected to adhere to the [Contributor
89
+ Covenant](http://contributor-covenant.org) code of conduct. See
93
90
  [here](https://github.com/lolcommits/lolcommits-flowdock/blob/master/CODE_OF_CONDUCT.md)
94
91
  for more details.
95
92
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Lolcommits
4
4
  module Flowdock
5
- VERSION = "0.3.3".freeze
5
+ VERSION = "0.4.0".freeze
6
6
  end
7
7
  end
@@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
32
32
 
33
33
  spec.required_ruby_version = ">= 2.3"
34
34
 
35
- spec.add_runtime_dependency "rest-client"
35
+ spec.add_runtime_dependency "rest-client", ">= 2.1.0"
36
36
  spec.add_runtime_dependency "lolcommits", ">= 0.14.2"
37
37
 
38
38
  spec.add_development_dependency "bundler"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lolcommits-flowdock
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Hutchinson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-20 00:00:00.000000000 Z
11
+ date: 2019-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: 2.1.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '0'
26
+ version: 2.1.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: lolcommits
29
29
  requirement: !ruby/object:Gem::Requirement