string_unescape 0.1 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -2
  3. data/string_unescape.gemspec +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 83cd1d356fa951e358c0102201514f977885a5e3606b5919ddd98bb30b53d9b5
4
- data.tar.gz: 881fab1e1e0c1796792ae91e3743c3557732057e38ae9ac897a788010136f292
3
+ metadata.gz: cd2d9db906e8fb40f796b62c2ac3fccbbb5a1249f122e65a416ce051fc830e17
4
+ data.tar.gz: 578afb211203fbb5599087d89fcf2733c7d8bb47f10cb73467aafe3102a09dc9
5
5
  SHA512:
6
- metadata.gz: d1fdf1a9b6dd4319c147268ad9277594720cbcdad639cae1dd7d36c5fb5ea54d22f05942eac86d113ee00f3fdfc289b69d7eec49096de38a63891b6cae729f07
7
- data.tar.gz: c55ece719cfca2a854b62a1140a99009a256c9886bf49a09296c8c59d2d5e3d055c874bca744b2804db5ce53e8e0522c763718e371208111cc326b29766361fd
6
+ metadata.gz: 7bd5ab3c4b8e54aa2c8bd47c4d5a13be7e9c653acb427129104721cee0ed504cefc771d9d24a2138d35a2c24dbf0808fca93fc3fc51658e45d866d3ffd1d2cb7
7
+ data.tar.gz: a44db0a5ea3ed5889eae92b428187477d4517b2c60d83a7c4bf5609bd3638151ea2bcfe8f71c1c26e321e9de8e27d03bfd289774ba1d5329bf57fcaf792fce3f
data/README.md CHANGED
@@ -12,9 +12,9 @@ puts '\xE3\x81\x9F\xE3\x81\xAE\xE3\x81\x97\xE3\x83\xBC'.unescape #=> たのし
12
12
  puts '\u{1F43E}'.unescape #=> 🐾
13
13
  ```
14
14
 
15
- Note that you don't need to wrap the string with '"'.
15
+ Note that you don't need to wrap the string with `"`.
16
16
 
17
- See [testcase](https://github.com/tadd/string_unescape/blob/master/test/test_unescape.rb) also.
17
+ See [testcase](https://github.com/tadd/string_unescape/blob/master/test/test_string_unescape.rb) also.
18
18
 
19
19
  ## Supported Ruby versions
20
20
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "string_unescape"
3
- spec.version = "0.1"
3
+ spec.version = "0.1.1"
4
4
  spec.authors = ["Tadashi Saito"]
5
5
  spec.email = ["tad.a.digger@gmail.com"]
6
6
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: string_unescape
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.1'
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tadashi Saito