mathml2asciimath 0.0.9 → 0.0.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/rake.yml +32 -0
- data/.gitignore +1 -0
- data/.hound.yml +3 -1
- data/.rubocop.yml +7 -7
- data/Gemfile +1 -2
- data/README.adoc +6 -6
- data/Rakefile +1 -1
- data/bin/m2a.rb +5 -7
- data/bin/rspec +1 -1
- data/lib/mathml2asciimath/m2a.rb +208 -210
- data/lib/mathml2asciimath/version.rb +1 -2
- data/mathml2asciimath.gemspec +7 -7
- data/spec/mathml_spec.rb +329 -327
- data/spec/spec_helper.rb +6 -7
- metadata +37 -41
- data/.github/workflows/macos.yml +0 -31
- data/.github/workflows/ubuntu.yml +0 -43
- data/.github/workflows/windows.yml +0 -34
- data/.rubocop.ribose.yml +0 -65
- data/.rubocop.tb.yml +0 -650
- data/Gemfile.lock +0 -106
data/spec/spec_helper.rb
CHANGED
@@ -1,12 +1,11 @@
|
|
1
|
-
require
|
1
|
+
require "simplecov"
|
2
2
|
|
3
|
-
SimpleCov.profiles.define
|
4
|
-
add_filter
|
5
|
-
add_filter
|
6
|
-
add_group
|
3
|
+
SimpleCov.profiles.define "gem" do
|
4
|
+
add_filter "/spec/"
|
5
|
+
add_filter "/autotest/"
|
6
|
+
add_group "Libraries", "/lib/"
|
7
7
|
end
|
8
|
-
SimpleCov.start
|
8
|
+
SimpleCov.start "gem"
|
9
9
|
|
10
10
|
require "rspec/match_fuzzy"
|
11
11
|
require "mathml2asciimath"
|
12
|
-
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mathml2asciimath
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-11-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: htmlentities
|
@@ -28,16 +28,16 @@ dependencies:
|
|
28
28
|
name: nokogiri
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.
|
33
|
+
version: '1.12'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - "
|
38
|
+
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 1.
|
40
|
+
version: '1.12'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: bundler
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -53,33 +53,19 @@ dependencies:
|
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - "~>"
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '9.1'
|
62
|
-
type: :development
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - "~>"
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '9.1'
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: rspec-match_fuzzy
|
56
|
+
name: debug
|
71
57
|
requirement: !ruby/object:Gem::Requirement
|
72
58
|
requirements:
|
73
|
-
- - "
|
59
|
+
- - ">="
|
74
60
|
- !ruby/object:Gem::Version
|
75
|
-
version: 0
|
61
|
+
version: '0'
|
76
62
|
type: :development
|
77
63
|
prerelease: false
|
78
64
|
version_requirements: !ruby/object:Gem::Requirement
|
79
65
|
requirements:
|
80
|
-
- - "
|
66
|
+
- - ">="
|
81
67
|
- !ruby/object:Gem::Version
|
82
|
-
version: 0
|
68
|
+
version: '0'
|
83
69
|
- !ruby/object:Gem::Dependency
|
84
70
|
name: guard
|
85
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -136,20 +122,34 @@ dependencies:
|
|
136
122
|
- - "~>"
|
137
123
|
- !ruby/object:Gem::Version
|
138
124
|
version: '3.6'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: rspec-match_fuzzy
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - "~>"
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 0.1.3
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: 0.1.3
|
139
139
|
- !ruby/object:Gem::Dependency
|
140
140
|
name: rubocop
|
141
141
|
requirement: !ruby/object:Gem::Requirement
|
142
142
|
requirements:
|
143
|
-
- -
|
143
|
+
- - "~>"
|
144
144
|
- !ruby/object:Gem::Version
|
145
|
-
version:
|
145
|
+
version: 1.5.2
|
146
146
|
type: :development
|
147
147
|
prerelease: false
|
148
148
|
version_requirements: !ruby/object:Gem::Requirement
|
149
149
|
requirements:
|
150
|
-
- -
|
150
|
+
- - "~>"
|
151
151
|
- !ruby/object:Gem::Version
|
152
|
-
version:
|
152
|
+
version: 1.5.2
|
153
153
|
- !ruby/object:Gem::Dependency
|
154
154
|
name: simplecov
|
155
155
|
requirement: !ruby/object:Gem::Requirement
|
@@ -188,15 +188,11 @@ executables: []
|
|
188
188
|
extensions: []
|
189
189
|
extra_rdoc_files: []
|
190
190
|
files:
|
191
|
-
- ".github/workflows/
|
192
|
-
- ".
|
193
|
-
- ".github/workflows/windows.yml"
|
191
|
+
- ".github/workflows/rake.yml"
|
192
|
+
- ".gitignore"
|
194
193
|
- ".hound.yml"
|
195
|
-
- ".rubocop.ribose.yml"
|
196
|
-
- ".rubocop.tb.yml"
|
197
194
|
- ".rubocop.yml"
|
198
195
|
- Gemfile
|
199
|
-
- Gemfile.lock
|
200
196
|
- LICENSE
|
201
197
|
- README.adoc
|
202
198
|
- Rakefile
|
@@ -208,11 +204,11 @@ files:
|
|
208
204
|
- mathml2asciimath.gemspec
|
209
205
|
- spec/mathml_spec.rb
|
210
206
|
- spec/spec_helper.rb
|
211
|
-
homepage: https://github.com/
|
207
|
+
homepage: https://github.com/plurimath/mathml2asciimath
|
212
208
|
licenses:
|
213
209
|
- BSD-2-Clause
|
214
210
|
metadata: {}
|
215
|
-
post_install_message:
|
211
|
+
post_install_message:
|
216
212
|
rdoc_options: []
|
217
213
|
require_paths:
|
218
214
|
- lib
|
@@ -220,15 +216,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
220
216
|
requirements:
|
221
217
|
- - ">="
|
222
218
|
- !ruby/object:Gem::Version
|
223
|
-
version: 2.
|
219
|
+
version: 2.5.0
|
224
220
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
225
221
|
requirements:
|
226
222
|
- - ">="
|
227
223
|
- !ruby/object:Gem::Version
|
228
224
|
version: '0'
|
229
225
|
requirements: []
|
230
|
-
rubygems_version: 3.
|
231
|
-
signing_key:
|
226
|
+
rubygems_version: 3.2.22
|
227
|
+
signing_key:
|
232
228
|
specification_version: 4
|
233
229
|
summary: Convert MathML to AsciiMath
|
234
230
|
test_files: []
|
data/.github/workflows/macos.yml
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
# Auto-generated by Cimas: Do not edit it manually!
|
2
|
-
# See https://github.com/metanorma/cimas
|
3
|
-
name: macos
|
4
|
-
|
5
|
-
on:
|
6
|
-
push:
|
7
|
-
branches: [ master ]
|
8
|
-
pull_request:
|
9
|
-
|
10
|
-
jobs:
|
11
|
-
test-macos:
|
12
|
-
name: Test on Ruby ${{ matrix.ruby }} macOS
|
13
|
-
runs-on: macos-latest
|
14
|
-
strategy:
|
15
|
-
fail-fast: false
|
16
|
-
matrix:
|
17
|
-
ruby: [ '2.6', '2.5', '2.4' ]
|
18
|
-
steps:
|
19
|
-
- uses: actions/checkout@master
|
20
|
-
- name: Use Ruby
|
21
|
-
uses: actions/setup-ruby@v1
|
22
|
-
with:
|
23
|
-
ruby-version: ${{ matrix.ruby }}
|
24
|
-
architecture: 'x64'
|
25
|
-
- name: Update gems
|
26
|
-
run: |
|
27
|
-
sudo gem install bundler --force
|
28
|
-
bundle install --jobs 4 --retry 3
|
29
|
-
- name: Run specs
|
30
|
-
run: |
|
31
|
-
bundle exec rake
|
@@ -1,43 +0,0 @@
|
|
1
|
-
# Auto-generated by Cimas: Do not edit it manually!
|
2
|
-
# See https://github.com/metanorma/cimas
|
3
|
-
name: ubuntu
|
4
|
-
|
5
|
-
on:
|
6
|
-
push:
|
7
|
-
branches: [ master ]
|
8
|
-
pull_request:
|
9
|
-
|
10
|
-
jobs:
|
11
|
-
test-linux:
|
12
|
-
name: Test on Ruby ${{ matrix.ruby }} Ubuntu
|
13
|
-
runs-on: ubuntu-latest
|
14
|
-
strategy:
|
15
|
-
fail-fast: false
|
16
|
-
matrix:
|
17
|
-
ruby: [ '2.6', '2.5', '2.4' ]
|
18
|
-
steps:
|
19
|
-
- uses: actions/checkout@master
|
20
|
-
- name: Use Ruby
|
21
|
-
uses: actions/setup-ruby@v1
|
22
|
-
with:
|
23
|
-
ruby-version: ${{ matrix.ruby }}
|
24
|
-
architecture: 'x64'
|
25
|
-
- name: Update gems
|
26
|
-
run: |
|
27
|
-
gem install bundler
|
28
|
-
bundle install --jobs 4 --retry 3
|
29
|
-
- name: Run specs
|
30
|
-
run: |
|
31
|
-
bundle exec rake
|
32
|
-
- name: Trigger dependent repositories
|
33
|
-
if: github.ref == 'refs/heads/master' && matrix.ruby == '2.6'
|
34
|
-
env:
|
35
|
-
GH_USERNAME: ${{ secrets.PAT_USERNAME }}
|
36
|
-
GH_ACCESS_TOKEN: ${{ secrets.PAT_TOKEN }}
|
37
|
-
run: |
|
38
|
-
curl -LO --retry 3 https://raw.githubusercontent.com/metanorma/metanorma-build-scripts/master/trigger-gh-actions.sh
|
39
|
-
[[ -f ".github/workflows/dependent_repos.env" ]] && source .github/workflows/dependent_repos.env
|
40
|
-
for repo in $DEPENDENT_REPOS
|
41
|
-
do
|
42
|
-
sh trigger-gh-actions.sh $ORGANISATION $repo $GH_USERNAME $GH_ACCESS_TOKEN $GITHUB_REPOSITORY
|
43
|
-
done
|
@@ -1,34 +0,0 @@
|
|
1
|
-
# Auto-generated by Cimas: Do not edit it manually!
|
2
|
-
# See https://github.com/metanorma/cimas
|
3
|
-
name: windows
|
4
|
-
|
5
|
-
on:
|
6
|
-
push:
|
7
|
-
branches: [ master ]
|
8
|
-
pull_request:
|
9
|
-
|
10
|
-
jobs:
|
11
|
-
test-windows:
|
12
|
-
name: Test on Ruby ${{ matrix.ruby }} Windows
|
13
|
-
runs-on: windows-latest
|
14
|
-
strategy:
|
15
|
-
fail-fast: false
|
16
|
-
matrix:
|
17
|
-
ruby: [ '2.6', '2.5', '2.4' ]
|
18
|
-
steps:
|
19
|
-
- uses: actions/checkout@master
|
20
|
-
- name: Use Ruby
|
21
|
-
uses: actions/setup-ruby@v1
|
22
|
-
with:
|
23
|
-
ruby-version: ${{ matrix.ruby }}
|
24
|
-
architecture: 'x64'
|
25
|
-
- name: Update gems
|
26
|
-
shell: pwsh
|
27
|
-
run: |
|
28
|
-
gem install bundler
|
29
|
-
bundle config --local path vendor/bundle
|
30
|
-
bundle update
|
31
|
-
bundle install --jobs 4 --retry 3
|
32
|
-
- name: Run specs
|
33
|
-
run: |
|
34
|
-
bundle exec rake
|
data/.rubocop.ribose.yml
DELETED
@@ -1,65 +0,0 @@
|
|
1
|
-
AllCops:
|
2
|
-
Include:
|
3
|
-
- "**/*.rake"
|
4
|
-
- "**/Gemfile"
|
5
|
-
- "**/*.gemfile"
|
6
|
-
- "**/Rakefile"
|
7
|
-
Exclude:
|
8
|
-
- "vendor/**/*"
|
9
|
-
- "db/**/*"
|
10
|
-
- "tmp/**/*"
|
11
|
-
DisplayCopNames: false
|
12
|
-
StyleGuideCopsOnly: false
|
13
|
-
Rails:
|
14
|
-
Enabled: true
|
15
|
-
Metrics/AbcSize:
|
16
|
-
Description: A calculated magnitude based on number of assignments, branches, and
|
17
|
-
conditions.
|
18
|
-
Enabled: true
|
19
|
-
Max: 15
|
20
|
-
Metrics/BlockLength:
|
21
|
-
Exclude:
|
22
|
-
- "spec/**/*"
|
23
|
-
Metrics/BlockNesting:
|
24
|
-
Description: Avoid excessive block nesting
|
25
|
-
StyleGuide: https://github.com/bbatsov/ruby-style-guide#three-is-the-number-thou-shalt-count
|
26
|
-
Enabled: true
|
27
|
-
Max: 3
|
28
|
-
Metrics/ClassLength:
|
29
|
-
Description: Avoid classes longer than 100 lines of code.
|
30
|
-
Enabled: false
|
31
|
-
CountComments: false
|
32
|
-
Max: 100
|
33
|
-
Metrics/CyclomaticComplexity:
|
34
|
-
Description: A complexity metric that is strongly correlated to the number of test
|
35
|
-
cases needed to validate a method.
|
36
|
-
Enabled: true
|
37
|
-
Max: 6
|
38
|
-
Metrics/LineLength:
|
39
|
-
Description: Limit lines to 80 characters.
|
40
|
-
StyleGuide: https://github.com/bbatsov/ruby-style-guide#80-character-limits
|
41
|
-
Enabled: true
|
42
|
-
Max: 80
|
43
|
-
AllowURI: true
|
44
|
-
URISchemes:
|
45
|
-
- http
|
46
|
-
- https
|
47
|
-
Metrics/MethodLength:
|
48
|
-
Description: Avoid methods longer than 10 lines of code.
|
49
|
-
StyleGuide: https://github.com/bbatsov/ruby-style-guide#short-methods
|
50
|
-
Enabled: true
|
51
|
-
CountComments: true
|
52
|
-
Max: 10
|
53
|
-
Exclude:
|
54
|
-
- "spec/**/*"
|
55
|
-
Metrics/ParameterLists:
|
56
|
-
Description: Avoid long parameter lists.
|
57
|
-
StyleGuide: https://github.com/bbatsov/ruby-style-guide#too-many-params
|
58
|
-
Enabled: true
|
59
|
-
Max: 5
|
60
|
-
CountKeywordArgs: true
|
61
|
-
Metrics/PerceivedComplexity:
|
62
|
-
Description: A complexity metric geared towards measuring complexity for a human
|
63
|
-
reader.
|
64
|
-
Enabled: true
|
65
|
-
Max: 7
|