openxml-drawingml 0.2.1 → 0.3.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/ci.yml +21 -0
- data/.gitignore +1 -0
- data/lib/openxml/drawingml/version.rb +1 -1
- data/openxml-drawingml.gemspec +1 -1
- metadata +4 -5
- data/.travis.yml +0 -6
- data/Gemfile.lock +0 -65
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1a81a76e912c32877115787298177e190bf1a0179d25962286e9decca8004efc
|
|
4
|
+
data.tar.gz: 3e9a72fb22447d2a53d36fd4a3b9d8d5a34fcd18fbb32ce805108fcf2120bf0c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fe240ff4f8f54ce9aeb9cce8fa61b99deda0745c008e9d065a43c98f65063b37a02e0f4a93bd8ffa8cd333e6dfb93dcb8bd0b672616c16ef694f370d8db8bb75
|
|
7
|
+
data.tar.gz: 92a51c27a5baf40f7705fc70efc8b294954a330c170d540c4acdb97e2d8c1e933955122a710e0bdcc4b28db0df13952dac0303880635cae6976f4fff374e2ea9
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
name: Tests
|
|
2
|
+
on: [push]
|
|
3
|
+
|
|
4
|
+
jobs:
|
|
5
|
+
ruby:
|
|
6
|
+
name: Ruby Tests
|
|
7
|
+
runs-on: ubuntu-latest
|
|
8
|
+
strategy:
|
|
9
|
+
matrix:
|
|
10
|
+
ruby-version: [ "2.3", "2.4", "2.5", "2.6", "2.7", "3.0" ]
|
|
11
|
+
|
|
12
|
+
steps:
|
|
13
|
+
- name: Checkout
|
|
14
|
+
uses: actions/checkout@v2
|
|
15
|
+
- name: Setup Ruby
|
|
16
|
+
uses: ruby/setup-ruby@v1
|
|
17
|
+
with:
|
|
18
|
+
bundler-cache: true
|
|
19
|
+
ruby-version: ${{ matrix.ruby-version }}
|
|
20
|
+
- name: Run Tests
|
|
21
|
+
run: bundle exec rake spec
|
data/.gitignore
CHANGED
data/openxml-drawingml.gemspec
CHANGED
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
20
20
|
spec.require_paths = ["lib"]
|
|
21
21
|
|
|
22
|
-
spec.required_ruby_version = ">= 2.
|
|
22
|
+
spec.required_ruby_version = ">= 2.3"
|
|
23
23
|
|
|
24
24
|
spec.add_dependency "nokogiri"
|
|
25
25
|
spec.add_dependency "openxml-package", "~> 0.3.2"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: openxml-drawingml
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amos King
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: exe
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2021-
|
|
13
|
+
date: 2021-12-23 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: nokogiri
|
|
@@ -133,10 +133,9 @@ executables: []
|
|
|
133
133
|
extensions: []
|
|
134
134
|
extra_rdoc_files: []
|
|
135
135
|
files:
|
|
136
|
+
- ".github/workflows/ci.yml"
|
|
136
137
|
- ".gitignore"
|
|
137
|
-
- ".travis.yml"
|
|
138
138
|
- Gemfile
|
|
139
|
-
- Gemfile.lock
|
|
140
139
|
- LICENSE.txt
|
|
141
140
|
- README.md
|
|
142
141
|
- Rakefile
|
|
@@ -410,7 +409,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
410
409
|
requirements:
|
|
411
410
|
- - ">="
|
|
412
411
|
- !ruby/object:Gem::Version
|
|
413
|
-
version: '2.
|
|
412
|
+
version: '2.3'
|
|
414
413
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
415
414
|
requirements:
|
|
416
415
|
- - ">="
|
data/.travis.yml
DELETED
data/Gemfile.lock
DELETED
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
openxml-drawingml (0.2.1)
|
|
5
|
-
nokogiri
|
|
6
|
-
openxml-package (~> 0.3.2)
|
|
7
|
-
|
|
8
|
-
GEM
|
|
9
|
-
remote: https://rubygems.org/
|
|
10
|
-
specs:
|
|
11
|
-
coderay (1.1.2)
|
|
12
|
-
diff-lcs (1.3)
|
|
13
|
-
docile (1.3.1)
|
|
14
|
-
json (2.1.0)
|
|
15
|
-
method_source (0.9.2)
|
|
16
|
-
mini_portile2 (2.6.1)
|
|
17
|
-
nokogiri (1.12.5)
|
|
18
|
-
mini_portile2 (~> 2.6.1)
|
|
19
|
-
racc (~> 1.4)
|
|
20
|
-
openxml-package (0.3.4)
|
|
21
|
-
nokogiri
|
|
22
|
-
ox
|
|
23
|
-
rubyzip
|
|
24
|
-
ox (2.14.5)
|
|
25
|
-
pry (0.12.2)
|
|
26
|
-
coderay (~> 1.1.0)
|
|
27
|
-
method_source (~> 0.9.0)
|
|
28
|
-
racc (1.6.0)
|
|
29
|
-
rake (12.3.2)
|
|
30
|
-
rr (1.2.1)
|
|
31
|
-
rspec (3.8.0)
|
|
32
|
-
rspec-core (~> 3.8.0)
|
|
33
|
-
rspec-expectations (~> 3.8.0)
|
|
34
|
-
rspec-mocks (~> 3.8.0)
|
|
35
|
-
rspec-core (3.8.0)
|
|
36
|
-
rspec-support (~> 3.8.0)
|
|
37
|
-
rspec-expectations (3.8.2)
|
|
38
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
39
|
-
rspec-support (~> 3.8.0)
|
|
40
|
-
rspec-mocks (3.8.0)
|
|
41
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
42
|
-
rspec-support (~> 3.8.0)
|
|
43
|
-
rspec-support (3.8.0)
|
|
44
|
-
rubyzip (2.3.2)
|
|
45
|
-
simplecov (0.16.1)
|
|
46
|
-
docile (~> 1.1)
|
|
47
|
-
json (>= 1.8, < 3)
|
|
48
|
-
simplecov-html (~> 0.10.0)
|
|
49
|
-
simplecov-html (0.10.2)
|
|
50
|
-
timecop (0.9.1)
|
|
51
|
-
|
|
52
|
-
PLATFORMS
|
|
53
|
-
ruby
|
|
54
|
-
|
|
55
|
-
DEPENDENCIES
|
|
56
|
-
openxml-drawingml!
|
|
57
|
-
pry
|
|
58
|
-
rake
|
|
59
|
-
rr
|
|
60
|
-
rspec
|
|
61
|
-
simplecov
|
|
62
|
-
timecop
|
|
63
|
-
|
|
64
|
-
BUNDLED WITH
|
|
65
|
-
2.2.17
|