edn_turbo 0.7.2 → 0.7.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d3a019b63b2ae2c41aa11bf484c883a240d45a2ec3e7a8993bf46823e69a209b
4
- data.tar.gz: 84e52336caffb1b3bfc25b7ba468689e8a564bbc4cc633f56415d0c95b09655f
3
+ metadata.gz: 6ef6fae989e30efe46585a8cfe01ae00255e4014ade4a0ac5f36a0d7c1e98511
4
+ data.tar.gz: fc19904544cc35bfb84e08a2cb5d13e7fc4fc8b6a19117de247cc5d701c25bee
5
5
  SHA512:
6
- metadata.gz: b026cd6b1c43b6e571f2be7647cb249ed740f8af4a23b2208051ec0835968561044ff7c87775ec3dbd4d378bdaa62c8b58ce027e65f8a35cfd93bd4c8a3431b4
7
- data.tar.gz: c73e78a41f638fedf58baa8157261ae0063d0fd88cdc3cf1e74e654f3f4f68110bd7f0ab74ab444e1f9b18d2a421370ba0dccfbf6eeb1f1a825e6435c5cd52c5
6
+ metadata.gz: d7bbeacf3d1d4e8e75356986bf87a3838d6e40729ea206aab1b55860d693b1e4e0d0bb1b63d2ae5689d3080f9a4dc239beb3aa7b29b9fe191e6d3592dfb3514b
7
+ data.tar.gz: 1877016ec61e37c41f4aed022444d721406068f062d6210cfd41cfe5d48290889de24f2d1bd5ebe00cd2ad34dd97af4904567644335a45255cb91d79e118e4fc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # Change Log
2
2
  All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).
3
3
 
4
+ ## [0.7.3] - 2021-11-06
5
+ ### Changed
6
+ * Fix by Caleb Land for new homebrew installs to /opt
7
+
4
8
  ## [0.7.2] - 2021-09-20
5
9
  ### Changed
6
10
  * allow rake versions > 12
@@ -48,7 +52,8 @@ All notable changes to this project will be documented in this file. This change
48
52
  ### Added
49
53
  * initial version of docker configs for testing on Ubuntu.
50
54
 
51
- [Unreleased]: https://github.com/edporras/edn_turbo/-/compare/0.7.2...main
55
+ [Unreleased]: https://github.com/edporras/edn_turbo/-/compare/0.7.3...main
56
+ [0.7.3]: https://github.com/edporras/edn_turbo/-/compare/0.7.2...0.7.3
52
57
  [0.7.2]: https://github.com/edporras/edn_turbo/-/compare/0.7.1...0.7.2
53
58
  [0.7.1]: https://github.com/edporras/edn_turbo/-/compare/0.7.0...0.7.1
54
59
  [0.7.0]: https://github.com/edporras/edn_turbo/-/compare/0.6.2...0.7.0
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- edn_turbo 0.7.2
1
+ edn_turbo 0.7.3
2
2
  ===============
3
3
 
4
4
  Fast [Ragel](http://www.colm.net/open-source/ragel/)-based EDN parser for Ruby.
@@ -3,17 +3,17 @@
3
3
  # The MIT License (MIT)
4
4
 
5
5
  # Copyright (c) 2015-2021 Ed Porras
6
- #
6
+ #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
9
9
  # in the Software without restriction, including without limitation the rights
10
10
  # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
11
  # copies of the Software, and to permit persons to whom the Software is
12
12
  # furnished to do so, subject to the following conditions:
13
- #
13
+ #
14
14
  # The above copyright notice and this permission notice shall be included in
15
15
  # all copies or substantial portions of the Software.
16
- #
16
+ #
17
17
  # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
18
  # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
19
  # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
@@ -24,40 +24,14 @@
24
24
 
25
25
  require 'mkmf'
26
26
 
27
- header_dirs =
28
- if RUBY_PLATFORM =~ /darwin/
29
- abort "\n>> failed to find pkg-config binary - Is brew installed? If so, run 'brew install pkg-config'?\n\n" unless
30
- File.exist?('/usr/local/bin/pkg-config')
27
+ ENV['PKG_CONFIG_PATH'] ||= ""
28
+ ENV['PKG_CONFIG_PATH'] += if RUBY_PLATFORM =~ /darwin/
29
+ ":/usr/local/opt/icu4c/lib/pkgconfig:/opt/homebrew/opt/icu4c/lib/pkgconfig"
30
+ else
31
+ ":/usr/local/lib/pkgconfig:/usr/local/share/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig"
32
+ end
31
33
 
32
- abort "\n>> failed to find icu4c package - Did you run 'brew install icu4c'?\n\n" unless
33
- File.exist?('/usr/local/opt/icu4c/lib/pkgconfig/icu-uc.pc')
34
-
35
- i_opt = %x[ export PKG_CONFIG_PATH="/usr/local/opt/icu4c/lib/pkgconfig" && /usr/local/bin/pkg-config --cflags-only-I icu-uc ]
36
- [
37
- i_opt[/-I(.+?)\s/,1]
38
- ].freeze
39
- else
40
- [
41
- '/usr/local/include',
42
- '/usr/local/opt/icu4c/include',
43
- '/usr/include'
44
- ].freeze
45
- end
46
-
47
- lib_dirs =
48
- if RUBY_PLATFORM =~ /darwin/
49
- l_opt = %x[ export PKG_CONFIG_PATH="/usr/local/opt/icu4c/lib/pkgconfig" && /usr/local/bin/pkg-config --libs icu-uc ]
50
- [
51
- l_opt[/-L(.+?)\s/,1]
52
- ].freeze
53
- else
54
- [
55
- '/usr/local/lib', # must be the first entry; add others after it
56
- '/usr/local/opt/icu4c/lib'
57
- ].freeze
58
- end
59
-
60
- dir_config('icuuc', header_dirs, lib_dirs)
34
+ pkg_config('icu-uc')
61
35
 
62
36
  # feels very hackish to do this but the new icu4c needs it on MacOS
63
37
  if RUBY_PLATFORM =~ /darwin/
@@ -23,6 +23,6 @@
23
23
  # THE SOFTWARE.
24
24
 
25
25
  module EDNT
26
- VERSION = '0.7.2'
27
- RELEASE_DATE = '2021-09-20'
26
+ VERSION = '0.7.3'
27
+ RELEASE_DATE = '2021-11-06'
28
28
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: edn_turbo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.2
4
+ version: 0.7.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ed Porras
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-09-20 00:00:00.000000000 Z
11
+ date: 2021-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: edn