edn_turbo 0.7.3 → 0.8.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 +4 -4
- data/.github/workflows/ruby-ext.yml +33 -0
- data/CHANGELOG.md +12 -2
- data/LICENSE +1 -1
- data/README.md +19 -8
- data/Rakefile +2 -2
- data/ext/edn_turbo/edn_parser.cc +1 -1
- data/ext/edn_turbo/edn_parser.rl +1 -1
- data/ext/edn_turbo/extconf.rb +1 -1
- data/ext/edn_turbo/main.cc +1 -1
- data/ext/edn_turbo/parser.h +1 -1
- data/ext/edn_turbo/parser_def.cc +1 -1
- data/ext/edn_turbo/util.cc +2 -2
- data/ext/edn_turbo/util.h +1 -1
- data/ext/edn_turbo/util_unicode.cc +1 -1
- data/ext/edn_turbo/util_unicode.h +1 -1
- data/lib/edn_turbo/edn_parser.rb +1 -1
- data/lib/edn_turbo/version.rb +3 -3
- data/lib/edn_turbo.rb +1 -1
- data/spec/edn_turbo/edn_parser_spec.rb +29 -1
- metadata +18 -37
- data/docker/Dockerfile +0 -40
- data/docker/build +0 -11
- data/docker/common.sh +0 -28
- data/docker/console +0 -11
- data/docker/docker-compose.yml +0 -22
- data/docker/entrypoint +0 -3
- data/docker/make-check +0 -8
- data/docker/run +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c1f65f5310e96d3499d0399693a666beabec89267a1d9b24208975838a798975
|
4
|
+
data.tar.gz: 99f6e84ff441c7011b7d565086e94202b9d559e344b32a131c3f6c22efb8321f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 79fb42952469ab2a60549f15237020a989e6dda70e251dee8888b14f5274788b2fc6b467a02c758bade4bbb7429983341d9eb7bce5bc2937172b80f42a8c7c34
|
7
|
+
data.tar.gz: a194eb08824f20c2f42e991269afd54e159fb3038d26184e3b192e5ace56a8463af40a1c209967d938a0da8d925367ae2b7604bbdf4fbe19a58dad3e732129a4
|
@@ -0,0 +1,33 @@
|
|
1
|
+
name: Build c-ext gem
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
pull_request:
|
6
|
+
branches: [ devel ]
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
test:
|
10
|
+
strategy:
|
11
|
+
fail-fast: false
|
12
|
+
matrix:
|
13
|
+
os:
|
14
|
+
- ubuntu-latest
|
15
|
+
# - macos-latest
|
16
|
+
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
|
17
|
+
ruby:
|
18
|
+
- '2.6'
|
19
|
+
- '2.7'
|
20
|
+
- '3.0'
|
21
|
+
- '3.1'
|
22
|
+
- '3.2'
|
23
|
+
runs-on: ${{ matrix.os }}
|
24
|
+
steps:
|
25
|
+
- run: sudo apt-get install -y libicu-dev libreadline-dev ragel
|
26
|
+
- uses: ruby/setup-ruby@v1
|
27
|
+
with:
|
28
|
+
ruby-version: ${{ matrix.ruby }}
|
29
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
30
|
+
- uses: actions/checkout@v2
|
31
|
+
- run: bundle install
|
32
|
+
- run: bundle exec rake
|
33
|
+
- run: bundle exec rspec
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,16 @@
|
|
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.
|
4
|
+
## [0.8.0] - 2023-03-12
|
5
5
|
### Changed
|
6
|
+
* switch edn-ruby dependency to use edn2023.
|
7
|
+
|
8
|
+
## [0.7.4] - 2022-05-03
|
9
|
+
### Fixed
|
10
|
+
* empty strings should use utf-8 encoding (#11).
|
11
|
+
|
12
|
+
## [0.7.3] - 2021-11-06
|
13
|
+
### Fixed
|
6
14
|
* Fix by Caleb Land for new homebrew installs to /opt
|
7
15
|
|
8
16
|
## [0.7.2] - 2021-09-20
|
@@ -52,7 +60,9 @@ All notable changes to this project will be documented in this file. This change
|
|
52
60
|
### Added
|
53
61
|
* initial version of docker configs for testing on Ubuntu.
|
54
62
|
|
55
|
-
[Unreleased]: https://github.com/edporras/edn_turbo/-/compare/0.
|
63
|
+
[Unreleased]: https://github.com/edporras/edn_turbo/-/compare/0.8.0...main
|
64
|
+
[0.8.0]: https://github.com/edporras/edn_turbo/-/compare/0.7.4...0.8.0
|
65
|
+
[0.7.4]: https://github.com/edporras/edn_turbo/-/compare/0.7.3...0.7.4
|
56
66
|
[0.7.3]: https://github.com/edporras/edn_turbo/-/compare/0.7.2...0.7.3
|
57
67
|
[0.7.2]: https://github.com/edporras/edn_turbo/-/compare/0.7.1...0.7.2
|
58
68
|
[0.7.1]: https://github.com/edporras/edn_turbo/-/compare/0.7.0...0.7.1
|
data/LICENSE
CHANGED
data/README.md
CHANGED
@@ -1,13 +1,12 @@
|
|
1
|
-
edn_turbo 0.
|
1
|
+
edn_turbo 0.8.0
|
2
2
|
===============
|
3
3
|
|
4
4
|
Fast [Ragel](http://www.colm.net/open-source/ragel/)-based EDN parser for Ruby.
|
5
5
|
|
6
|
-
`edn_turbo` can be used as a parser plugin for
|
7
|
-
|
8
|
-
`edn_turbo`
|
9
|
-
|
10
|
-
magnitude faster.
|
6
|
+
`edn_turbo` can be used as a parser plugin for [edn-ruby]. With a few
|
7
|
+
exceptions `edn_turbo` provides the same functionality as the edn gem,
|
8
|
+
but since the `edn_turbo` parser is implemented in C++, it is an order
|
9
|
+
of magnitude faster.
|
11
10
|
|
12
11
|
Some quick sample runs comparing time output of file reads using `edn`
|
13
12
|
and `edn_turbo` (see [issue 12](https://github.com/relevance/edn-ruby/issues/12)):
|
@@ -38,8 +37,8 @@ Ruby 2.6 or greater.
|
|
38
37
|
|
39
38
|
- ruby gems:
|
40
39
|
- [rake](http://rake.rubyforge.org)
|
41
|
-
- [rake-compiler
|
42
|
-
- [
|
40
|
+
- [rake-compiler](http://rake-compiler.rubyforge.org)
|
41
|
+
- [edn2023]
|
43
42
|
- a C++-11 capable compiler.
|
44
43
|
- [icu4c](http://icu-project.org/apiref/icu4c/)
|
45
44
|
|
@@ -48,6 +47,11 @@ Notes:
|
|
48
47
|
|
49
48
|
- `edn_turbo` uses a ragel-based parser but the generated .cc file is
|
50
49
|
bundled so ragel should not need to be installed.
|
50
|
+
- If your system updates the installed version of icu4c, you'll likely
|
51
|
+
get symbol errors when trying to use `edn_turbo` as the libraries it
|
52
|
+
was linked against when first installed will no longer exist. To
|
53
|
+
resolve this, reinstall the gem so it is built against the new icu4c
|
54
|
+
libraries.
|
51
55
|
|
52
56
|
Usage
|
53
57
|
=====
|
@@ -114,3 +118,10 @@ calls into the ruby side.
|
|
114
118
|
`Float::INFINITY` and `##NaN` as `Float::NAN`.
|
115
119
|
|
116
120
|
- As of v0.7.1, `edn_turbo` requires ruby 2.5 or greater.
|
121
|
+
|
122
|
+
- As of v0.7.4, `edn_turbo` requires ruby 2.6 or greater.
|
123
|
+
|
124
|
+
- As of v0.8.0, `edn_turbo` replaces its [edn-ruby] with [edn2023].
|
125
|
+
|
126
|
+
[edn-ruby]: https://github.com/relevance/edn-ruby
|
127
|
+
[edn2023]: https://github.com/edn2023/edn2023
|
data/Rakefile
CHANGED
@@ -50,8 +50,8 @@ task :graph, %i[machine] do |_t, args|
|
|
50
50
|
machine = args[:machine]
|
51
51
|
|
52
52
|
# assumes graphviz is installed
|
53
|
-
sh "ragel -Vp -S #{machine} -o #{tmpfile} #{EXT_PATH}/#{RAGEL_PARSER_SRC} && "\
|
54
|
-
|
53
|
+
sh "ragel -Vp -S #{machine} -o #{tmpfile} #{EXT_PATH}/#{RAGEL_PARSER_SRC} && " \
|
54
|
+
"dot -Tpng #{tmpfile} -o #{machine}.png"
|
55
55
|
end
|
56
56
|
|
57
57
|
task build: %i[clean ragel compile chmod]
|
data/ext/edn_turbo/edn_parser.cc
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
#line 1 "edn_parser.rl"
|
3
3
|
// The MIT License (MIT)
|
4
4
|
|
5
|
-
// Copyright (c) 2015-
|
5
|
+
// Copyright (c) 2015-2023 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
|
data/ext/edn_turbo/edn_parser.rl
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
// The MIT License (MIT)
|
2
2
|
|
3
|
-
// Copyright (c) 2015-
|
3
|
+
// Copyright (c) 2015-2023 Ed Porras
|
4
4
|
|
5
5
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
// of this software and associated documentation files (the "Software"), to deal
|
data/ext/edn_turbo/extconf.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# The MIT License (MIT)
|
4
4
|
|
5
|
-
# Copyright (c) 2015-
|
5
|
+
# Copyright (c) 2015-2023 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
|
data/ext/edn_turbo/main.cc
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
// The MIT License (MIT)
|
2
2
|
|
3
|
-
// Copyright (c) 2015-
|
3
|
+
// Copyright (c) 2015-2023 Ed Porras
|
4
4
|
|
5
5
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
// of this software and associated documentation files (the "Software"), to deal
|
data/ext/edn_turbo/parser.h
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
// The MIT License (MIT)
|
2
2
|
|
3
|
-
// Copyright (c) 2015-
|
3
|
+
// Copyright (c) 2015-2023 Ed Porras
|
4
4
|
|
5
5
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
// of this software and associated documentation files (the "Software"), to deal
|
data/ext/edn_turbo/parser_def.cc
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
// The MIT License (MIT)
|
2
2
|
|
3
|
-
// Copyright (c) 2015-
|
3
|
+
// Copyright (c) 2015-2023 Ed Porras
|
4
4
|
|
5
5
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
// of this software and associated documentation files (the "Software"), to deal
|
data/ext/edn_turbo/util.cc
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
// The MIT License (MIT)
|
2
2
|
|
3
|
-
// Copyright (c) 2015-
|
3
|
+
// Copyright (c) 2015-2023 Ed Porras
|
4
4
|
|
5
5
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
// of this software and associated documentation files (the "Software"), to deal
|
@@ -214,7 +214,7 @@ namespace edn
|
|
214
214
|
if (error) throw_error(error);
|
215
215
|
return true;
|
216
216
|
} else if (p_end == p_start) {
|
217
|
-
v_utf8 =
|
217
|
+
v_utf8 = rb_utf8_str_new_lit("");
|
218
218
|
return true;
|
219
219
|
}
|
220
220
|
|
data/ext/edn_turbo/util.h
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
// The MIT License (MIT)
|
2
2
|
|
3
|
-
// Copyright (c) 2015-
|
3
|
+
// Copyright (c) 2015-2023 Ed Porras
|
4
4
|
|
5
5
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
// of this software and associated documentation files (the "Software"), to deal
|
@@ -1,6 +1,6 @@
|
|
1
1
|
// The MIT License (MIT)
|
2
2
|
|
3
|
-
// Copyright (c) 2015-
|
3
|
+
// Copyright (c) 2015-2023 Ed Porras
|
4
4
|
|
5
5
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
// of this software and associated documentation files (the "Software"), to deal
|
@@ -1,6 +1,6 @@
|
|
1
1
|
// The MIT License (MIT)
|
2
2
|
|
3
|
-
// Copyright (c) 2015-
|
3
|
+
// Copyright (c) 2015-2023 Ed Porras
|
4
4
|
|
5
5
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
// of this software and associated documentation files (the "Software"), to deal
|
data/lib/edn_turbo/edn_parser.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# The MIT License (MIT)
|
4
4
|
#
|
5
|
-
# Copyright (c) 2015-
|
5
|
+
# Copyright (c) 2015-2023 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
|
data/lib/edn_turbo/version.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# The MIT License (MIT)
|
4
4
|
#
|
5
|
-
# Copyright (c) 2015-
|
5
|
+
# Copyright (c) 2015-2023 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
|
@@ -23,6 +23,6 @@
|
|
23
23
|
# THE SOFTWARE.
|
24
24
|
|
25
25
|
module EDNT
|
26
|
-
VERSION = '0.
|
27
|
-
RELEASE_DATE = '
|
26
|
+
VERSION = '0.8.0'
|
27
|
+
RELEASE_DATE = '2023-03-12'
|
28
28
|
end
|
data/lib/edn_turbo.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# The MIT License (MIT)
|
4
4
|
#
|
5
|
-
# Copyright (c) 2015-
|
5
|
+
# Copyright (c) 2015-2023 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
|
@@ -1,5 +1,27 @@
|
|
1
|
+
# The MIT License (MIT)
|
2
|
+
#
|
3
|
+
# Copyright (c) 2015-2023 Ed Porras
|
4
|
+
#
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
10
|
+
# furnished to do so, subject to the following conditions:
|
11
|
+
#
|
12
|
+
# The above copyright notice and this permission notice shall be included in
|
13
|
+
# all copies or substantial portions of the Software.
|
14
|
+
#
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
# THE SOFTWARE.
|
22
|
+
|
1
23
|
require 'edn_turbo'
|
2
|
-
require 'pry-byebug'
|
24
|
+
# require 'pry-byebug'
|
3
25
|
|
4
26
|
module EDNT
|
5
27
|
RSpec.describe Parser do
|
@@ -415,5 +437,11 @@ module EDNT
|
|
415
437
|
expect(subject.parse('[ 1 2 3 4 #_ { :a 1 } ]')).to eq([1, 2, 3, 4])
|
416
438
|
end
|
417
439
|
end
|
440
|
+
|
441
|
+
context 'encoding' do
|
442
|
+
it 'empty str as utf-8' do
|
443
|
+
expect(subject.parse('""').encoding).to eq(Encoding::UTF_8)
|
444
|
+
end
|
445
|
+
end
|
418
446
|
end
|
419
447
|
end
|
metadata
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: edn_turbo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ed Porras
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: edn2023
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
@@ -45,73 +45,61 @@ dependencies:
|
|
45
45
|
- !ruby/object:Gem::Version
|
46
46
|
version: '14.0'
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
|
-
name:
|
48
|
+
name: pry-byebug
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
50
50
|
requirements:
|
51
51
|
- - "~>"
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: '
|
54
|
-
type: :
|
53
|
+
version: '3.9'
|
54
|
+
type: :development
|
55
55
|
prerelease: false
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
57
|
requirements:
|
58
58
|
- - "~>"
|
59
59
|
- !ruby/object:Gem::Version
|
60
|
-
version: '
|
60
|
+
version: '3.9'
|
61
61
|
- !ruby/object:Gem::Dependency
|
62
|
-
name:
|
62
|
+
name: rake-compiler
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|
64
64
|
requirements:
|
65
|
-
- - '='
|
66
|
-
- !ruby/object:Gem::Version
|
67
|
-
version: '3.7'
|
68
65
|
- - "~>"
|
69
66
|
- !ruby/object:Gem::Version
|
70
|
-
version:
|
67
|
+
version: '1.2'
|
71
68
|
type: :development
|
72
69
|
prerelease: false
|
73
70
|
version_requirements: !ruby/object:Gem::Requirement
|
74
71
|
requirements:
|
75
|
-
- - '='
|
76
|
-
- !ruby/object:Gem::Version
|
77
|
-
version: '3.7'
|
78
72
|
- - "~>"
|
79
73
|
- !ruby/object:Gem::Version
|
80
|
-
version:
|
74
|
+
version: '1.2'
|
81
75
|
- !ruby/object:Gem::Dependency
|
82
76
|
name: rspec
|
83
77
|
requirement: !ruby/object:Gem::Requirement
|
84
78
|
requirements:
|
85
|
-
- - '='
|
86
|
-
- !ruby/object:Gem::Version
|
87
|
-
version: '3.8'
|
88
79
|
- - "~>"
|
89
80
|
- !ruby/object:Gem::Version
|
90
|
-
version: 3.
|
81
|
+
version: '3.11'
|
91
82
|
type: :development
|
92
83
|
prerelease: false
|
93
84
|
version_requirements: !ruby/object:Gem::Requirement
|
94
85
|
requirements:
|
95
|
-
- - '='
|
96
|
-
- !ruby/object:Gem::Version
|
97
|
-
version: '3.8'
|
98
86
|
- - "~>"
|
99
87
|
- !ruby/object:Gem::Version
|
100
|
-
version: 3.
|
88
|
+
version: '3.11'
|
101
89
|
- !ruby/object:Gem::Dependency
|
102
90
|
name: rubocop
|
103
91
|
requirement: !ruby/object:Gem::Requirement
|
104
92
|
requirements:
|
105
93
|
- - "~>"
|
106
94
|
- !ruby/object:Gem::Version
|
107
|
-
version: '1.
|
95
|
+
version: '1.28'
|
108
96
|
type: :development
|
109
97
|
prerelease: false
|
110
98
|
version_requirements: !ruby/object:Gem::Requirement
|
111
99
|
requirements:
|
112
100
|
- - "~>"
|
113
101
|
- !ruby/object:Gem::Version
|
114
|
-
version: '1.
|
102
|
+
version: '1.28'
|
115
103
|
description: Optimized plugin for parsing EDN files using ragel
|
116
104
|
email: github@digressed.net
|
117
105
|
executables:
|
@@ -121,6 +109,7 @@ extensions:
|
|
121
109
|
extra_rdoc_files: []
|
122
110
|
files:
|
123
111
|
- ".dir-locals.el"
|
112
|
+
- ".github/workflows/ruby-ext.yml"
|
124
113
|
- ".gitignore"
|
125
114
|
- ".rspec"
|
126
115
|
- CHANGELOG.md
|
@@ -130,14 +119,6 @@ files:
|
|
130
119
|
- Rakefile
|
131
120
|
- bin/ppedn
|
132
121
|
- bin/ppedn-ruby
|
133
|
-
- docker/Dockerfile
|
134
|
-
- docker/build
|
135
|
-
- docker/common.sh
|
136
|
-
- docker/console
|
137
|
-
- docker/docker-compose.yml
|
138
|
-
- docker/entrypoint
|
139
|
-
- docker/make-check
|
140
|
-
- docker/run
|
141
122
|
- ext/edn_turbo/depend
|
142
123
|
- ext/edn_turbo/edn_parser.cc
|
143
124
|
- ext/edn_turbo/edn_parser.rl
|
@@ -166,15 +147,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
166
147
|
requirements:
|
167
148
|
- - ">="
|
168
149
|
- !ruby/object:Gem::Version
|
169
|
-
version: 2.
|
150
|
+
version: 2.6.0
|
170
151
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
171
152
|
requirements:
|
172
153
|
- - ">="
|
173
154
|
- !ruby/object:Gem::Version
|
174
155
|
version: '0'
|
175
156
|
requirements: []
|
176
|
-
rubygems_version: 3.
|
157
|
+
rubygems_version: 3.3.7
|
177
158
|
signing_key:
|
178
|
-
specification_version:
|
159
|
+
specification_version: 4
|
179
160
|
summary: Read EDN files
|
180
161
|
test_files: []
|
data/docker/Dockerfile
DELETED
@@ -1,40 +0,0 @@
|
|
1
|
-
FROM buildpack-deps:stretch
|
2
|
-
MAINTAINER github@digressed.net
|
3
|
-
ARG ruby_version
|
4
|
-
|
5
|
-
ENV LC_ALL C.UTF-8
|
6
|
-
|
7
|
-
USER root
|
8
|
-
RUN groupadd -r ned -g 1000 && \
|
9
|
-
useradd -u 1000 -r -g ned -m -s /sbin/nologin -c "Docker image user" ned && \
|
10
|
-
mkdir /home/ned/bin && \
|
11
|
-
mkdir /home/ned/src && \
|
12
|
-
chown -R ned:ned /home/ned
|
13
|
-
|
14
|
-
WORKDIR /home/ned/src
|
15
|
-
|
16
|
-
# Update Ubuntu Software repository && update deps
|
17
|
-
RUN apt-get update && \
|
18
|
-
apt-get install -y \
|
19
|
-
libicu-dev \
|
20
|
-
libreadline-dev \
|
21
|
-
ragel && \
|
22
|
-
rm -rf /var/lib/apt/lists/*
|
23
|
-
|
24
|
-
USER ned
|
25
|
-
|
26
|
-
ENV PATH "/home/ned/.rbenv/bin:/home/ned/.rbenv/shims:$PATH"
|
27
|
-
|
28
|
-
# install rbenv
|
29
|
-
RUN \curl -sL https://github.com/rbenv/rbenv-installer/raw/master/bin/rbenv-installer | bash - && \
|
30
|
-
eval "$(rbenv init -)"
|
31
|
-
|
32
|
-
RUN rm -f .ruby-version
|
33
|
-
|
34
|
-
# the specified ruby version
|
35
|
-
RUN rbenv install $ruby_version && \
|
36
|
-
rbenv global $ruby_version
|
37
|
-
|
38
|
-
COPY --chown=ned:ned . /home/ned/src
|
39
|
-
|
40
|
-
ENTRYPOINT ["docker/entrypoint"]
|
data/docker/build
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
|
3
|
-
. docker/common.sh
|
4
|
-
|
5
|
-
set -e
|
6
|
-
|
7
|
-
set_ruby_ver $@
|
8
|
-
|
9
|
-
docker build --build-arg ruby_version=$RUBY_VERSION -f docker/Dockerfile -t digressed/test:edn_turbo-rb-$RUBY_VERSION .
|
10
|
-
docker tag "digressed/test:edn_turbo-rb-$RUBY_VERSION" "edn_turbo-rb-$RUBY_VERSION"
|
11
|
-
docker push "digressed/test:edn_turbo-rb-$RUBY_VERSION"
|
data/docker/common.sh
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
#!/bin/sh
|
2
|
-
|
3
|
-
RUBY_MAJOR_VER=3.0
|
4
|
-
|
5
|
-
function update_ruby_build()
|
6
|
-
{
|
7
|
-
if [ -e "~/.rbenv/plugins/" ]; then
|
8
|
-
echo "Updating ruby-build definitions"
|
9
|
-
|
10
|
-
pushd ~/.rbenv/plugins/ruby-build/ >> /dev/null
|
11
|
-
git pull
|
12
|
-
popd >> /dev/null
|
13
|
-
fi
|
14
|
-
}
|
15
|
-
|
16
|
-
function set_ruby_ver()
|
17
|
-
{
|
18
|
-
local args=("$@")
|
19
|
-
|
20
|
-
if [ ${#args[@]} -eq 0 ]; then
|
21
|
-
update_ruby_build
|
22
|
-
RUBY_VERSION=`ruby-build --definitions | grep "^$RUBY_MAJOR_VER" | tail -1`
|
23
|
-
else
|
24
|
-
RUBY_VERSION=$1
|
25
|
-
fi
|
26
|
-
|
27
|
-
echo "Using ruby $RUBY_VERSION"
|
28
|
-
}
|
data/docker/console
DELETED
data/docker/docker-compose.yml
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
version: "3"
|
2
|
-
services:
|
3
|
-
|
4
|
-
rb-3.0.2:
|
5
|
-
image: digressed/test:edn_turbo-rb-3.0.2
|
6
|
-
stdin_open: true
|
7
|
-
tty: true
|
8
|
-
|
9
|
-
rb-2.7.4:
|
10
|
-
image: digressed/test:edn_turbo-rb-2.7.4
|
11
|
-
stdin_open: true
|
12
|
-
tty: true
|
13
|
-
|
14
|
-
rb-2.6.8:
|
15
|
-
image: digressed/test:edn_turbo-rb-2.6.8
|
16
|
-
stdin_open: true
|
17
|
-
tty: true
|
18
|
-
|
19
|
-
rb-2.5.9:
|
20
|
-
image: digressed/test:edn_turbo-rb-2.5.9
|
21
|
-
stdin_open: true
|
22
|
-
tty: true
|
data/docker/entrypoint
DELETED
data/docker/make-check
DELETED