lolcommits 0.6.6 → 0.6.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.
- checksums.yaml +8 -8
- data/CHANGELOG.md +6 -1
- data/lib/lolcommits/version.rb +1 -1
- data/lolcommits.gemspec +1 -1
- metadata +2 -3
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
OTE4NDBmYzQ4M2FjNjI5Y2QwNGY4ZjgwOGE1M2RmMjE5NzYwZDU1Yw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZGExMjNmZTI0YzRjYzkwOGI2NTdlM2QyOWNmZTUzZTAwNGU0MDZhZQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZGUyYjI4YjY4MGZmZmVhMjViZWY5OTE3N2NhM2UxYzc3ZmYwZTYzYTI5YzM5
|
|
10
|
+
NGYxZDJmZDczOTQ1ZjQyNzFiZDM3ZDNmNWZkM2Y5ZGY2NjcyMjVkYjM4OWU0
|
|
11
|
+
OGEyODUyMGQ5ZmJkZjU1OGVlNmUwNjBlZWE3ZDhlYmQ0MGNhNTE=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
Y2I3NzY0YzcyYTQ3YjgyMDUzNzhmODhlZDQwNzI4YTViZGUyZjA5ZThlN2Jm
|
|
14
|
+
OTNkMDBjN2Q5M2E2ZjAyMmZlMTcxNWZjNDRlNjZmN2EyYTljNGFlNWRiN2E4
|
|
15
|
+
ZTVkZjRkN2ZiOWE5MzZiMDRlMzcxMTAwZDdlY2Q3ZTRhNGYyZWE=
|
data/CHANGELOG.md
CHANGED
|
@@ -8,10 +8,14 @@ project adheres to [Semantic Versioning][Semver].
|
|
|
8
8
|
* WIP - extract plugins to separate gems ...
|
|
9
9
|
* Your contribution here!
|
|
10
10
|
|
|
11
|
+
## [0.6.7][] (8 June 2016)
|
|
12
|
+
* Remove `console` binary from packaged gem
|
|
13
|
+
|
|
11
14
|
## [0.6.6][] (1 June 2016)
|
|
12
15
|
* Show error/exit when --config outside a git repo (@matthutchinson #308)
|
|
13
16
|
* Add more options to loltext plugin (@ruxton #304)
|
|
14
17
|
* Added CODE_OF_CONDUCT.md to repo (@matthutchinson)
|
|
18
|
+
* Added a useful `console` binary for development and debugging
|
|
15
19
|
|
|
16
20
|
## [0.6.5][] (12 April 2016)
|
|
17
21
|
* Add mercurial support (@tak #301 #302 #303)
|
|
@@ -237,7 +241,8 @@ project adheres to [Semantic Versioning][Semver].
|
|
|
237
241
|
instead of compositing multiply image Caption objects (this seems to be more
|
|
238
242
|
reliable to not glitch.)
|
|
239
243
|
|
|
240
|
-
[Unreleased]: https://github.com/mroth/lolcommits/compare/v0.6.
|
|
244
|
+
[Unreleased]: https://github.com/mroth/lolcommits/compare/v0.6.7...HEAD
|
|
245
|
+
[0.6.7]: https://github.com/mroth/lolcommits/compare/v0.6.6...v0.6.7
|
|
241
246
|
[0.6.6]: https://github.com/mroth/lolcommits/compare/v0.6.5...v0.6.6
|
|
242
247
|
[0.6.5]: https://github.com/mroth/lolcommits/compare/v0.6.4...v0.6.5
|
|
243
248
|
[0.6.4]: https://github.com/mroth/lolcommits/compare/v0.6.3...v0.6.4
|
data/lib/lolcommits/version.rb
CHANGED
data/lolcommits.gemspec
CHANGED
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
|
|
|
20
20
|
|
|
21
21
|
s.files = `git ls-files`.split("\n")
|
|
22
22
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
23
|
-
s.executables =
|
|
23
|
+
s.executables = 'lolcommits'
|
|
24
24
|
s.require_paths = ['lib']
|
|
25
25
|
|
|
26
26
|
# non-gem dependencies
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lolcommits
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matthew Rothenberg
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-06-
|
|
12
|
+
date: 2016-06-08 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rest-client
|
|
@@ -410,7 +410,6 @@ email:
|
|
|
410
410
|
- mrothenberg@gmail.com
|
|
411
411
|
- matt@hiddenloop.com
|
|
412
412
|
executables:
|
|
413
|
-
- console
|
|
414
413
|
- lolcommits
|
|
415
414
|
extensions: []
|
|
416
415
|
extra_rdoc_files: []
|