pygments.rb 1.1.1 → 1.1.2

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: 5021687249edac6151faaec1cec0187dea8eb311
4
- data.tar.gz: f61e48727a7eb866ee5c5bd549ddce136095efc2
3
+ metadata.gz: 8bc5149afa7c5c2d0c10d4c6aff7bc3baa070995
4
+ data.tar.gz: 082c9c329d7efa34eeef65e3418cf692651df776
5
5
  SHA512:
6
- metadata.gz: 05ec911f5a0aa423dd24da7ad7a4228989170790dee007347e401745c64d5c5fbc29b43cbe9e6a43f499f46ca5af8c504d0e0e29c2272aeb82fbcee524401b69
7
- data.tar.gz: b93056fd8b559770b234958660c4643ac400cbedfcf65df9e20dfcf859651b75d3361b1723506ed6bf18d7ab30de128d15ca65ae2454974f73e345b8cc4bed9b
6
+ metadata.gz: 804642de1b753e1f29469248eba2595c2d0bc472336797688cfe73d8c835bc2d1e8da62651d4060feeae95a3cb48694eab67394210a952f6695f7ba41c17d67c
7
+ data.tar.gz: 0308d5e79197552f817854ad6827dfe0d8d8a500e34b67afd597381777149b9ae26b54ed86aedec3a68a87a9c948ca3238b7ed465bc35d9a65a3b68cb8355891
@@ -1,6 +1,10 @@
1
1
  changelog
2
2
  ===========
3
3
 
4
+ Version 1.1.2 (2017/04/03)
5
+
6
+ * Resolves #176 exclude find_error.py symlink from gem [#177](https://github.com/tmm1/pygments.rb/pull/177)
7
+
4
8
  Version 1.1.1 (2016/12/28)
5
9
  -----------------------------
6
10
 
@@ -1,5 +1,5 @@
1
1
  # coding: utf-8
2
2
  # frozen_string_literal: true
3
3
  module Pygments
4
- VERSION = '1.1.1'
4
+ VERSION = '1.1.2'
5
5
  end
@@ -21,5 +21,6 @@ Gem::Specification.new do |s|
21
21
  # s.extensions = ['ext/extconf.rb']
22
22
  s.require_paths = ['lib']
23
23
 
24
- s.files = `git ls-files`.split("\n")
24
+ exclude = `find . -type l -printf '%P\\0'`.split("\0").map {|f| "':!#{f}'" } * ' '
25
+ s.files = `git ls-files -- . #{exclude}`.split("\n")
25
26
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pygments.rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aman Gupta
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-12-28 00:00:00.000000000 Z
12
+ date: 2017-04-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: multi_json
@@ -411,7 +411,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
411
411
  version: '0'
412
412
  requirements: []
413
413
  rubyforge_project:
414
- rubygems_version: 2.6.8
414
+ rubygems_version: 2.6.10
415
415
  signing_key:
416
416
  specification_version: 4
417
417
  summary: pygments wrapper for ruby