bibtex-ruby 5.1.6 → 6.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5a1f7a49db70b1dcaa1330aeacd9e1ce43fd79a0904f7c4be0c220e84e331528
4
- data.tar.gz: 536ecca150ff1889fca9976515f0226ac17ded8e0a3cd27b41b3c1cbc75baa0e
3
+ metadata.gz: fd8273ecbfc910f5944b9f471cf8eeda31e2052fbeeaf1c12335420f25d09371
4
+ data.tar.gz: 11000b7d5bca33dc41a3c3d49abaeccecaaefb0457fa815998cbbaab6e1b2bb4
5
5
  SHA512:
6
- metadata.gz: 57bfe6e85f4e7d5e88855d6637bc59f6f062d09dd72cc9c13b8ab7731737303dfe5531a33245b8dd70a33e6eed2ebcf8bf73be9da103ee896a6f16443067679c
7
- data.tar.gz: ccb43ac768278194cdecd9f6c649c67b8d74795a30bdce34c39b117c5677d1745d1efe52411b12569b188f74d513175f77e5bb104d751e5c58004c8c6953b87f
6
+ metadata.gz: c3403927d721d510d21b9ce5b0ea9b3507291cea43b62a4de00601b706d19401167e33d5696a8f6db1a276b9054e1d6b287f7de0b651ce9341609e83cde40986
7
+ data.tar.gz: d2cea6ef667ffc50872c183a6f4dc6cf74039597987fea0747858cdb7850536b9af285e67f27a31748c691876d5029b97c8eb5525379711eab5b8c5bce8118b2
data/Gemfile CHANGED
@@ -6,9 +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.2'
10
+
9
11
  group :debug do
10
- gem 'byebug', require: false, platforms: :mri
11
- gem 'ruby-debug', require: false, platforms: :jruby
12
+ gem 'debug', '>= 1.0', require: false, platforms: :mri
12
13
  end
13
14
 
14
15
  group :test do
@@ -27,13 +28,11 @@ group :profile do
27
28
  end
28
29
 
29
30
  group :coverage do
30
- gem 'coveralls', require: false
31
31
  gem 'simplecov', require: false, platforms: [:ruby]
32
32
  end
33
33
 
34
34
  group :development do
35
35
  gem 'iconv', platforms: [:ruby]
36
- gem 'racc'
37
36
  gem 'rake'
38
37
  gem 'yard'
39
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