char_size 0.2.2 → 0.2.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9ff09b048174c469587fd7401ff10443c309a425
4
- data.tar.gz: 03160e3cdfb739d42c06cedb046c97657f155b10
3
+ metadata.gz: 275c767aa359cab5f7eb1eb177e4e8f36d7454e9
4
+ data.tar.gz: 150c93ec7c8b3399382fa4e777f7bef8f61adfa8
5
5
  SHA512:
6
- metadata.gz: 0b1d680bc421595c1a61d9a3fa2f35946c5cfa701835af569d9c34a70e9a6a6a2fb4f2c08831645df839b6979b69bb0ea53ce2ac8a41bf6302d1a6ebd439bbc2
7
- data.tar.gz: d44b11ddb4595c050b6e1b8b8dfc77617fc9ea68d9d1c6448a9f35fefe1b0e5ae84bfcb822e1b100b44914b9f4fcdad2ca6796cc1f0ea3dba63b6fc248335e53
6
+ metadata.gz: a2eb6fc3927b8e49fab2f02a92c1fa73cc0d041f9c97a4037933f7e7baa586c59e22996dcaf4fbc3fc795c43ecb1d05a18a426372a68d73f9195b04d670b90cd
7
+ data.tar.gz: 84f99f9521c3585a8b149f0a59877827b874f29e30b6fa7d3bd5f04ed614cf04d5e5b12681af90d4ad8e37017b3a71f6a67cf4c3c280889eb61e8dc950a79bf0
@@ -43,6 +43,12 @@ static VALUE minmax(VALUE class, VALUE encoding_or_name)
43
43
  return rb_assoc_new(min, max);
44
44
  }
45
45
 
46
+ /*
47
+ * Document-module: CharSize
48
+ *
49
+ * The +CharSize+ module provides functions that return the character size
50
+ * limits of encodings.
51
+ */
46
52
  void Init_char_size(void)
47
53
  {
48
54
  VALUE CharSize = rb_define_module("CharSize");
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CharSize
4
- VERSION = "0.2.2"
4
+ VERSION = "0.2.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: char_size
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Haines