bibtex-ruby 6.0.0 → 6.1.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/Gemfile +2 -4
- data/History.txt +40 -0
- data/README.md +313 -256
- data/bibtex-ruby.gemspec +2 -1
- data/features/support/env.rb +2 -2
- data/lib/bibtex/name_parser.rb +66 -64
- data/lib/bibtex/names.rb +1 -1
- data/lib/bibtex/parser.rb +25 -23
- data/lib/bibtex/version.rb +1 -1
- data/test/bibtex/test_utilities.rb +1 -1
- data/test/helper.rb +1 -6
- data/test/test_bibtex.rb +1 -1
- data/test/test_export.rb +1 -1
- metadata +21 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fd8273ecbfc910f5944b9f471cf8eeda31e2052fbeeaf1c12335420f25d09371
|
4
|
+
data.tar.gz: 11000b7d5bca33dc41a3c3d49abaeccecaaefb0457fa815998cbbaab6e1b2bb4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3403927d721d510d21b9ce5b0ea9b3507291cea43b62a4de00601b706d19401167e33d5696a8f6db1a276b9054e1d6b287f7de0b651ce9341609e83cde40986
|
7
|
+
data.tar.gz: d2cea6ef667ffc50872c183a6f4dc6cf74039597987fea0747858cdb7850536b9af285e67f27a31748c691876d5029b97c8eb5525379711eab5b8c5bce8118b2
|
data/Gemfile
CHANGED
@@ -6,11 +6,10 @@ gem 'json', '~>2.0', platforms: %i[mri_18 jruby]
|
|
6
6
|
gem 'rdf', '~>3.0'
|
7
7
|
gem 'rdf-vocab', '~>3.0'
|
8
8
|
|
9
|
-
gem 'rexml', '~>3.
|
9
|
+
gem 'rexml', '~>3.2'
|
10
10
|
|
11
11
|
group :debug do
|
12
|
-
gem '
|
13
|
-
gem 'ruby-debug', require: false, platforms: :jruby
|
12
|
+
gem 'debug', '>= 1.0', require: false, platforms: :mri
|
14
13
|
end
|
15
14
|
|
16
15
|
group :test do
|
@@ -34,7 +33,6 @@ end
|
|
34
33
|
|
35
34
|
group :development do
|
36
35
|
gem 'iconv', platforms: [:ruby]
|
37
|
-
gem 'racc'
|
38
36
|
gem 'rake'
|
39
37
|
gem 'yard'
|
40
38
|
end
|
data/History.txt
CHANGED
@@ -1,28 +1,68 @@
|
|
1
|
+
* Add official support for Ruby 3.1
|
2
|
+
* Remove official support for Ruby < 2.7, as they reached their End-of-Life
|
3
|
+
|
4
|
+
6.0.0 / 2021-01-07
|
5
|
+
==================
|
6
|
+
|
7
|
+
* Make bibtexml converter optional
|
8
|
+
|
9
|
+
5.1.7 / 2021-01-07
|
10
|
+
==================
|
11
|
+
|
12
|
+
* Add support for Ruby 3.0 (@skalee)
|
13
|
+
|
14
|
+
5.1.6 / 2020-12-02
|
15
|
+
==================
|
16
|
+
|
17
|
+
* Ignore case when matching types
|
18
|
+
* Remove official support for Ruby 2.4
|
19
|
+
|
20
|
+
5.1.5 / 2020-10-14
|
21
|
+
==================
|
22
|
+
|
23
|
+
5.1.4 / 2020-04-14
|
24
|
+
==================
|
25
|
+
|
26
|
+
5.1.3 / 2020-04-06
|
27
|
+
==================
|
28
|
+
|
29
|
+
5.1.2 / 2020-02-27
|
30
|
+
==================
|
31
|
+
|
32
|
+
5.1.1 / 2020-01-17
|
33
|
+
==================
|
34
|
+
|
1
35
|
5.1.0 / 2020-01-17
|
2
36
|
==================
|
37
|
+
|
3
38
|
* Use File.read instead of Kernel.open in BibTeX.open
|
4
39
|
* Fix Ruby 2.7 deprecation warnings
|
5
40
|
|
6
41
|
5.0.0 / 2019-06-12
|
7
42
|
==================
|
43
|
+
|
8
44
|
* Dropped support for Ruby < 2.3
|
9
45
|
|
10
46
|
4.2.0 / 2015-02-02
|
11
47
|
==================
|
48
|
+
|
12
49
|
* Fixed queries being whitespace sensitive
|
13
50
|
|
14
51
|
4.0.9 / 2015-01-20
|
15
52
|
==================
|
53
|
+
|
16
54
|
* Improve BibTeX::Value comparison
|
17
55
|
|
18
56
|
4.0.8 / 2015-01-12
|
19
57
|
==================
|
58
|
+
|
20
59
|
* Ruby 2.2 support
|
21
60
|
* Added Entry#month_numeric
|
22
61
|
* Added support for numeric values
|
23
62
|
|
24
63
|
4.0.4 / 2014-10-10
|
25
64
|
==================
|
65
|
+
|
26
66
|
* added !~ matcher for queries (@temporaer)
|
27
67
|
|
28
68
|
4.0.0 / 2014-07-08
|