xml-kit 0.5.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +9 -0
- data/.github/workflows/ci.yml +41 -0
- data/.rubocop.yml +8 -5
- data/CHANGELOG.md +31 -22
- data/Gemfile.lock +44 -46
- data/LICENSE.txt +1 -1
- data/README.md +3 -5
- data/Rakefile +0 -1
- data/bin/audit +8 -0
- data/bin/setup +6 -4
- data/bin/style +8 -0
- data/bin/test +1 -10
- data/lib/xml/kit/version.rb +1 -1
- data/xml-kit.gemspec +3 -3
- metadata +11 -11
- data/.gitlab-ci.yml +0 -15
- data/.travis.yml +0 -13
- data/bin/cibuild +0 -21
- data/bin/lint +0 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 72cba660557fbb9fc55640fc292587d0bb9efc0d07d36f2dd7a57a5981f189e3
|
4
|
+
data.tar.gz: da50becdadf74efbdd6ab390f2ce634870bd3e716f2beb8d843f6c1ef980ce5e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f06dade4d5725222c16c26f2ac5063585d07e62d6f554f0428743a011d883a9a2c4fe812c56042201cd5ff11cb91b533c17d4de955d60e6aaff7539a8c6d0e6d
|
7
|
+
data.tar.gz: 771f4241d74091bd09b85dfbb2bd57675d6ab9e09b2ff2e766b730c017e94f1860675e4701cc9845e945771fb1297c13daa46b9bfd91944e03146eed0d8e316d
|
@@ -0,0 +1,41 @@
|
|
1
|
+
name: ci
|
2
|
+
on:
|
3
|
+
push:
|
4
|
+
branches: [main]
|
5
|
+
pull_request:
|
6
|
+
branches: [main]
|
7
|
+
jobs:
|
8
|
+
test:
|
9
|
+
runs-on: ubuntu-latest
|
10
|
+
strategy:
|
11
|
+
matrix:
|
12
|
+
ruby-version: ['2.7', '3.0', '3.1']
|
13
|
+
steps:
|
14
|
+
- uses: actions/checkout@v2
|
15
|
+
- name: Set up Ruby
|
16
|
+
uses: ruby/setup-ruby@v1
|
17
|
+
with:
|
18
|
+
ruby-version: ${{ matrix.ruby-version }}
|
19
|
+
bundler-cache: true
|
20
|
+
- name: Running tests…
|
21
|
+
run: sh bin/test
|
22
|
+
style:
|
23
|
+
runs-on: ubuntu-latest
|
24
|
+
steps:
|
25
|
+
- uses: actions/checkout@v2
|
26
|
+
- uses: ruby/setup-ruby@v1
|
27
|
+
with:
|
28
|
+
ruby-version: '3.1'
|
29
|
+
bundler-cache: true
|
30
|
+
- name: Running style checks…
|
31
|
+
run: sh bin/style
|
32
|
+
audit:
|
33
|
+
runs-on: ubuntu-latest
|
34
|
+
steps:
|
35
|
+
- uses: actions/checkout@v2
|
36
|
+
- uses: ruby/setup-ruby@v1
|
37
|
+
with:
|
38
|
+
ruby-version: '2.7'
|
39
|
+
bundler-cache: true
|
40
|
+
- name: Running audit…
|
41
|
+
run: sh bin/audit
|
data/.rubocop.yml
CHANGED
@@ -9,7 +9,13 @@ AllCops:
|
|
9
9
|
- 'spec/fixtures/**/*'
|
10
10
|
- 'tmp/**/*'
|
11
11
|
- 'vendor/**/*'
|
12
|
-
TargetRubyVersion: 2.
|
12
|
+
TargetRubyVersion: 2.7
|
13
|
+
|
14
|
+
Layout/BlockAlignment:
|
15
|
+
EnforcedStyleAlignWith: start_of_line
|
16
|
+
Exclude:
|
17
|
+
- 'lib/**/*.builder'
|
18
|
+
- 'spec/**/*'
|
13
19
|
|
14
20
|
Layout/ClassStructure:
|
15
21
|
Enabled: true
|
@@ -33,9 +39,6 @@ Layout/EndOfLine:
|
|
33
39
|
Layout/FirstArrayElementIndentation:
|
34
40
|
EnforcedStyle: consistent
|
35
41
|
|
36
|
-
Layout/HeredocIndentation:
|
37
|
-
EnforcedStyle: active_support
|
38
|
-
|
39
42
|
Layout/MultilineOperationIndentation:
|
40
43
|
EnforcedStyle: indented
|
41
44
|
|
@@ -63,7 +66,7 @@ Metrics/ModuleLength:
|
|
63
66
|
Exclude:
|
64
67
|
- 'spec/**/*.rb'
|
65
68
|
|
66
|
-
|
69
|
+
Layout/LineLength:
|
67
70
|
IgnoredPatterns: ['(\A|\s)#']
|
68
71
|
Exclude:
|
69
72
|
- 'spec/**/*.rb'
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
Version 0.
|
1
|
+
Version 0.6.0
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
All notable changes to this project will be documented in this file.
|
@@ -8,6 +8,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
8
8
|
|
9
9
|
## [Unreleased]
|
10
10
|
|
11
|
+
## [0.6.0] - 2022-05-23
|
12
|
+
### Added
|
13
|
+
- Add support for Ruby 3.1
|
14
|
+
|
15
|
+
### Removed
|
16
|
+
- Drop support for Ruby 2.5
|
17
|
+
- Drop support for Ruby 2.6
|
18
|
+
|
11
19
|
## [0.5.0] - 2021-01-30
|
12
20
|
### Changed
|
13
21
|
- Minimum Ruby 2.5+
|
@@ -37,24 +45,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
37
45
|
- \_assign does not coerce values by default.
|
38
46
|
- errors are merged together instead of overwritten during attribute validation.
|
39
47
|
|
40
|
-
[Unreleased]: https://github.com/
|
41
|
-
[0.
|
42
|
-
[0.
|
43
|
-
[0.
|
44
|
-
[0.3.
|
45
|
-
[0.
|
46
|
-
[0.
|
47
|
-
[0.1.
|
48
|
-
[0.1.
|
49
|
-
[0.1.
|
50
|
-
[0.1.
|
51
|
-
[0.1.
|
52
|
-
[0.1.
|
53
|
-
[0.1.
|
54
|
-
[0.1.
|
55
|
-
[0.1.
|
56
|
-
[0.1.
|
57
|
-
[0.1.
|
58
|
-
[0.1.
|
59
|
-
[0.1.1]: https://github.com/
|
60
|
-
[0.1.
|
48
|
+
[Unreleased]: https://github.com/xlgmokha/xml-kit/compare/v0.6.0...HEAD
|
49
|
+
[0.6.0]: https://github.com/xlgmokha/xml-kit/compare/v0.5.0...v0.6.0
|
50
|
+
[0.5.0]: https://github.com/xlgmokha/xml-kit/compare/v0.4.0...v0.5.0
|
51
|
+
[0.4.0]: https://github.com/xlgmokha/xml-kit/compare/v0.3.1...v0.4.0
|
52
|
+
[0.3.1]: https://github.com/xlgmokha/xml-kit/compare/v0.3.0...v0.3.1
|
53
|
+
[0.3.0]: https://github.com/xlgmokha/xml-kit/compare/v0.2.0...v0.3.0
|
54
|
+
[0.2.0]: https://github.com/xlgmokha/xml-kit/compare/v0.1.14...v0.2.0
|
55
|
+
[0.1.14]: https://github.com/xlgmokha/xml-kit/compare/v0.1.13...v0.1.14
|
56
|
+
[0.1.13]: https://github.com/xlgmokha/xml-kit/compare/v0.1.12...v0.1.13
|
57
|
+
[0.1.12]: https://github.com/xlgmokha/xml-kit/compare/v0.1.11...v0.1.12
|
58
|
+
[0.1.11]: https://github.com/xlgmokha/xml-kit/compare/v0.1.10...v0.1.11
|
59
|
+
[0.1.10]: https://github.com/xlgmokha/xml-kit/compare/v0.1.9...v0.1.10
|
60
|
+
[0.1.9]: https://github.com/xlgmokha/xml-kit/compare/v0.1.8...v0.1.9
|
61
|
+
[0.1.8]: https://github.com/xlgmokha/xml-kit/compare/v0.1.7...v0.1.8
|
62
|
+
[0.1.7]: https://github.com/xlgmokha/xml-kit/compare/v0.1.6...v0.1.7
|
63
|
+
[0.1.6]: https://github.com/xlgmokha/xml-kit/compare/v0.1.5...v0.1.6
|
64
|
+
[0.1.5]: https://github.com/xlgmokha/xml-kit/compare/v0.1.4...v0.1.5
|
65
|
+
[0.1.4]: https://github.com/xlgmokha/xml-kit/compare/v0.1.3...v0.1.4
|
66
|
+
[0.1.3]: https://github.com/xlgmokha/xml-kit/compare/v0.1.1...v0.1.3
|
67
|
+
[0.1.1]: https://github.com/xlgmokha/xml-kit/compare/v0.1.1...v0.1.1
|
68
|
+
[0.1.1]: https://github.com/xlgmokha/xml-kit/compare/v0.1.0...v0.1.1
|
69
|
+
[0.1.0]: https://github.com/xlgmokha/xml-kit/compare/v0.1.0...v0.1.0
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
xml-kit (0.
|
4
|
+
xml-kit (0.6.0)
|
5
5
|
activemodel (>= 4.2.0)
|
6
6
|
builder (~> 3.2)
|
7
7
|
nokogiri (~> 1.10)
|
@@ -11,52 +11,50 @@ PATH
|
|
11
11
|
GEM
|
12
12
|
remote: https://rubygems.org/
|
13
13
|
specs:
|
14
|
-
activemodel (
|
15
|
-
activesupport (=
|
16
|
-
activesupport (
|
14
|
+
activemodel (7.0.3)
|
15
|
+
activesupport (= 7.0.3)
|
16
|
+
activesupport (7.0.3)
|
17
17
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
18
18
|
i18n (>= 1.6, < 2)
|
19
19
|
minitest (>= 5.1)
|
20
20
|
tzinfo (~> 2.0)
|
21
|
-
zeitwerk (~> 2.3)
|
22
21
|
ast (2.4.2)
|
23
22
|
builder (3.2.4)
|
24
|
-
bundler-audit (0.
|
23
|
+
bundler-audit (0.9.1)
|
25
24
|
bundler (>= 1.2.0, < 3)
|
26
|
-
thor (
|
27
|
-
concurrent-ruby (1.1.
|
28
|
-
diff-lcs (1.
|
29
|
-
docile (1.
|
30
|
-
ffaker (2.
|
31
|
-
i18n (1.
|
25
|
+
thor (~> 1.0)
|
26
|
+
concurrent-ruby (1.1.10)
|
27
|
+
diff-lcs (1.5.0)
|
28
|
+
docile (1.4.0)
|
29
|
+
ffaker (2.21.0)
|
30
|
+
i18n (1.10.0)
|
32
31
|
concurrent-ruby (~> 1.0)
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
mini_portile2 (~> 2.5.0)
|
32
|
+
mini_portile2 (2.8.0)
|
33
|
+
minitest (5.15.0)
|
34
|
+
nokogiri (1.13.6)
|
35
|
+
mini_portile2 (~> 2.8.0)
|
38
36
|
racc (~> 1.4)
|
39
|
-
parallel (1.
|
40
|
-
parser (3.
|
37
|
+
parallel (1.22.1)
|
38
|
+
parser (3.1.2.0)
|
41
39
|
ast (~> 2.4.1)
|
42
|
-
racc (1.
|
43
|
-
rainbow (3.
|
44
|
-
rake (13.0.
|
45
|
-
regexp_parser (2.0
|
46
|
-
rexml (3.2.
|
47
|
-
rspec (3.
|
48
|
-
rspec-core (~> 3.
|
49
|
-
rspec-expectations (~> 3.
|
50
|
-
rspec-mocks (~> 3.
|
51
|
-
rspec-core (3.
|
52
|
-
rspec-support (~> 3.
|
53
|
-
rspec-expectations (3.
|
40
|
+
racc (1.6.0)
|
41
|
+
rainbow (3.1.1)
|
42
|
+
rake (13.0.6)
|
43
|
+
regexp_parser (2.4.0)
|
44
|
+
rexml (3.2.5)
|
45
|
+
rspec (3.11.0)
|
46
|
+
rspec-core (~> 3.11.0)
|
47
|
+
rspec-expectations (~> 3.11.0)
|
48
|
+
rspec-mocks (~> 3.11.0)
|
49
|
+
rspec-core (3.11.0)
|
50
|
+
rspec-support (~> 3.11.0)
|
51
|
+
rspec-expectations (3.11.0)
|
54
52
|
diff-lcs (>= 1.2.0, < 2.0)
|
55
|
-
rspec-support (~> 3.
|
56
|
-
rspec-mocks (3.
|
53
|
+
rspec-support (~> 3.11.0)
|
54
|
+
rspec-mocks (3.11.1)
|
57
55
|
diff-lcs (>= 1.2.0, < 2.0)
|
58
|
-
rspec-support (~> 3.
|
59
|
-
rspec-support (3.
|
56
|
+
rspec-support (~> 3.11.0)
|
57
|
+
rspec-support (3.11.0)
|
60
58
|
rubocop (0.93.1)
|
61
59
|
parallel (~> 1.10)
|
62
60
|
parser (>= 2.7.1.5)
|
@@ -66,25 +64,25 @@ GEM
|
|
66
64
|
rubocop-ast (>= 0.6.0)
|
67
65
|
ruby-progressbar (~> 1.7)
|
68
66
|
unicode-display_width (>= 1.4.0, < 2.0)
|
69
|
-
rubocop-ast (1.
|
70
|
-
parser (>=
|
67
|
+
rubocop-ast (1.18.0)
|
68
|
+
parser (>= 3.1.1.0)
|
71
69
|
rubocop-rspec (1.44.1)
|
72
70
|
rubocop (~> 0.87)
|
73
71
|
rubocop-ast (>= 0.7.1)
|
74
72
|
ruby-progressbar (1.11.0)
|
75
|
-
simplecov (0.
|
76
|
-
docile (~> 1.1
|
77
|
-
|
78
|
-
|
79
|
-
simplecov-html (0.
|
80
|
-
|
73
|
+
simplecov (0.21.2)
|
74
|
+
docile (~> 1.1)
|
75
|
+
simplecov-html (~> 0.11)
|
76
|
+
simplecov_json_formatter (~> 0.1)
|
77
|
+
simplecov-html (0.12.3)
|
78
|
+
simplecov_json_formatter (0.1.4)
|
79
|
+
thor (1.2.1)
|
81
80
|
tilt (2.0.10)
|
82
81
|
tzinfo (2.0.4)
|
83
82
|
concurrent-ruby (~> 1.0)
|
84
|
-
unicode-display_width (1.
|
83
|
+
unicode-display_width (1.8.0)
|
85
84
|
xmldsig (0.6.6)
|
86
85
|
nokogiri (>= 1.6.8, < 2.0.0)
|
87
|
-
zeitwerk (2.4.2)
|
88
86
|
|
89
87
|
PLATFORMS
|
90
88
|
ruby
|
@@ -97,7 +95,7 @@ DEPENDENCIES
|
|
97
95
|
rspec (~> 3.0)
|
98
96
|
rubocop (~> 0.52)
|
99
97
|
rubocop-rspec (~> 1.22)
|
100
|
-
simplecov (~> 0.
|
98
|
+
simplecov (~> 0.21.2)
|
101
99
|
xml-kit!
|
102
100
|
|
103
101
|
BUNDLED WITH
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -1,9 +1,7 @@
|
|
1
1
|
# Xml::Kit
|
2
2
|
|
3
|
+
[![Build Status](https://github.com/xlgmokha/xml-kit/workflows/ci/badge.svg)](https://github.com/xlgmokha/xml-kit/actions)
|
3
4
|
[![Gem Version](https://badge.fury.io/rb/xml-kit.svg)](https://rubygems.org/gems/xml-kit)
|
4
|
-
[![Code Climate](https://codeclimate.com/github/saml-kit/xml-kit.svg)](https://codeclimate.com/github/saml-kit/xml-kit)
|
5
|
-
[![Build Status](https://travis-ci.org/saml-kit/xml-kit.svg?branch=master)](https://travis-ci.org/saml-kit/xml-kit)
|
6
|
-
[![Security](https://hakiri.io/github/saml-kit/xml-kit/master.svg)](https://hakiri.io/github/saml-kit/xml-kit/master)
|
7
5
|
|
8
6
|
Xml::Kit is a toolkit for working with XML. It supports adding [XML Digital Signatures](https://www.w3.org/TR/xmldsig-core/)
|
9
7
|
and [XML Encryption](https://www.w3.org/TR/2002/REC-xmlenc-core-20021210/Overview.html).
|
@@ -113,13 +111,13 @@ This will produce something like the following:
|
|
113
111
|
|
114
112
|
## Development
|
115
113
|
|
116
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `
|
114
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
117
115
|
|
118
116
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
119
117
|
|
120
118
|
## Contributing
|
121
119
|
|
122
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
120
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/xlgmokha/xml-kit.
|
123
121
|
|
124
122
|
## License
|
125
123
|
|
data/Rakefile
CHANGED
data/bin/audit
ADDED
data/bin/setup
CHANGED
data/bin/style
ADDED
data/bin/test
CHANGED
@@ -1,17 +1,8 @@
|
|
1
1
|
#!/bin/sh
|
2
2
|
|
3
|
-
# script/test: Run test suite for application. Optionally pass in a path to an
|
4
|
-
# individual test file to run a single test.
|
5
|
-
|
6
|
-
|
7
3
|
set -e
|
8
|
-
|
9
|
-
cd "$(dirname "$0")/.."
|
10
|
-
|
11
4
|
[ -z "$DEBUG" ] || set -x
|
12
5
|
|
13
|
-
|
14
|
-
bin/setup
|
6
|
+
cd "$(dirname "$0")/.."
|
15
7
|
|
16
|
-
echo [$(date "+%H:%M:%S")] "==> Running tests…"
|
17
8
|
bundle exec rake spec
|
data/lib/xml/kit/version.rb
CHANGED
data/xml-kit.gemspec
CHANGED
@@ -12,9 +12,9 @@ Gem::Specification.new do |spec|
|
|
12
12
|
|
13
13
|
spec.summary = 'A simple toolkit for working with XML.'
|
14
14
|
spec.description = 'A simple toolkit for working with XML.'
|
15
|
-
spec.homepage = 'https://github.com/
|
15
|
+
spec.homepage = 'https://github.com/xlgmokha/xml-kit'
|
16
16
|
spec.license = 'MIT'
|
17
|
-
spec.required_ruby_version = Gem::Requirement.new('>= 2.
|
17
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 2.7.0')
|
18
18
|
|
19
19
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
20
20
|
f.match(%r{^(test|spec|features)/})
|
@@ -36,5 +36,5 @@ Gem::Specification.new do |spec|
|
|
36
36
|
spec.add_development_dependency 'rspec', '~> 3.0'
|
37
37
|
spec.add_development_dependency 'rubocop', '~> 0.52'
|
38
38
|
spec.add_development_dependency 'rubocop-rspec', '~> 1.22'
|
39
|
-
spec.add_development_dependency 'simplecov', '~> 0.
|
39
|
+
spec.add_development_dependency 'simplecov', '~> 0.21.2'
|
40
40
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xml-kit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- mo khan
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-05-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activemodel
|
@@ -184,14 +184,14 @@ dependencies:
|
|
184
184
|
requirements:
|
185
185
|
- - "~>"
|
186
186
|
- !ruby/object:Gem::Version
|
187
|
-
version: 0.
|
187
|
+
version: 0.21.2
|
188
188
|
type: :development
|
189
189
|
prerelease: false
|
190
190
|
version_requirements: !ruby/object:Gem::Requirement
|
191
191
|
requirements:
|
192
192
|
- - "~>"
|
193
193
|
- !ruby/object:Gem::Version
|
194
|
-
version: 0.
|
194
|
+
version: 0.21.2
|
195
195
|
description: A simple toolkit for working with XML.
|
196
196
|
email:
|
197
197
|
- mo@mokhan.ca
|
@@ -199,21 +199,21 @@ executables: []
|
|
199
199
|
extensions: []
|
200
200
|
extra_rdoc_files: []
|
201
201
|
files:
|
202
|
+
- ".github/dependabot.yml"
|
203
|
+
- ".github/workflows/ci.yml"
|
202
204
|
- ".gitignore"
|
203
|
-
- ".gitlab-ci.yml"
|
204
205
|
- ".rspec"
|
205
206
|
- ".rubocop.yml"
|
206
|
-
- ".travis.yml"
|
207
207
|
- CHANGELOG.md
|
208
208
|
- Gemfile
|
209
209
|
- Gemfile.lock
|
210
210
|
- LICENSE.txt
|
211
211
|
- README.md
|
212
212
|
- Rakefile
|
213
|
-
- bin/
|
213
|
+
- bin/audit
|
214
214
|
- bin/console
|
215
|
-
- bin/lint
|
216
215
|
- bin/setup
|
216
|
+
- bin/style
|
217
217
|
- bin/test
|
218
218
|
- lib/xml-kit.rb
|
219
219
|
- lib/xml/kit.rb
|
@@ -253,7 +253,7 @@ files:
|
|
253
253
|
- lib/xml/kit/templates/signature.builder
|
254
254
|
- lib/xml/kit/version.rb
|
255
255
|
- xml-kit.gemspec
|
256
|
-
homepage: https://github.com/
|
256
|
+
homepage: https://github.com/xlgmokha/xml-kit
|
257
257
|
licenses:
|
258
258
|
- MIT
|
259
259
|
metadata:
|
@@ -266,14 +266,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
266
266
|
requirements:
|
267
267
|
- - ">="
|
268
268
|
- !ruby/object:Gem::Version
|
269
|
-
version: 2.
|
269
|
+
version: 2.7.0
|
270
270
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
271
271
|
requirements:
|
272
272
|
- - ">="
|
273
273
|
- !ruby/object:Gem::Version
|
274
274
|
version: '0'
|
275
275
|
requirements: []
|
276
|
-
rubygems_version: 3.
|
276
|
+
rubygems_version: 3.3.13
|
277
277
|
signing_key:
|
278
278
|
specification_version: 4
|
279
279
|
summary: A simple toolkit for working with XML.
|
data/.gitlab-ci.yml
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
image: ruby:2.2
|
2
|
-
|
3
|
-
before_script:
|
4
|
-
- apt-get update && apt-get install -y locales
|
5
|
-
- echo "en_US.UTF-8 UTF-8" > /etc/locale.gen
|
6
|
-
- locale-gen
|
7
|
-
- export LC_ALL=en_US.UTF-8
|
8
|
-
|
9
|
-
rspec:
|
10
|
-
script:
|
11
|
-
- bin/cibuild
|
12
|
-
|
13
|
-
lint:
|
14
|
-
script:
|
15
|
-
- bin/lint
|
data/.travis.yml
DELETED
data/bin/cibuild
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
#!/bin/sh
|
2
|
-
|
3
|
-
# script/cibuild: Setup environment for CI to run tests. This is primarily
|
4
|
-
# designed to run on the continuous integration server.
|
5
|
-
|
6
|
-
set -e
|
7
|
-
|
8
|
-
cd "$(dirname "$0")/.."
|
9
|
-
|
10
|
-
echo [$(date "+%H:%M:%S")] "==> Started at…"
|
11
|
-
|
12
|
-
# GC customizations
|
13
|
-
export RUBY_GC_MALLOC_LIMIT=79000000
|
14
|
-
export RUBY_GC_HEAP_INIT_SLOTS=800000
|
15
|
-
export RUBY_HEAP_FREE_MIN=100000
|
16
|
-
export RUBY_HEAP_SLOTS_INCREMENT=400000
|
17
|
-
export RUBY_HEAP_SLOTS_GROWTH_FACTOR=1
|
18
|
-
|
19
|
-
ruby -v
|
20
|
-
gem install bundler --conservative -v '~> 2.0'
|
21
|
-
bin/test
|