latias-string-commas 0.1.3 → 0.1.4

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. metadata +1 -2
  3. data/README.md +0 -30
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6629f922849ab534b44aa2abe07dfe769f4cd849d85ba70f047079f61d4a2cb5
4
- data.tar.gz: c8b3379a6a5534ceab071ca1cffbbf134fba212eb9e883a39d64d7fa1b576cc9
3
+ metadata.gz: 9a6c44fcacd96f06e11dbdc49ee6ed249add3d600ebaf6178a071d0b4f9cb436
4
+ data.tar.gz: be923d72bf015f857d757003427022faca82e7b68efb9a466be9c084a3e3ce15
5
5
  SHA512:
6
- metadata.gz: e634d25d7e95c2913192a61914b3951f4233aaa6b39e2dd0775be2f798fc9e86f890349f580d76e2ab6e6f29a4223bd9c5d7753b61bac97f2b9b6178de968dec
7
- data.tar.gz: d0844c73a9f05b378ca3bafad16e4aa001fc0a4f36703e7cf5cda5153a280f24080a251f17ae4e770fea81c76833edbaf142fa2861ae9e07a22a4ac4e4f1432a
6
+ metadata.gz: 8421ba1ad1780b9ebff8e32500f017c4428e6061fef013d1166f4322cc054ba63701ddf6ee894a7708105c729ba2485bfc2464f0367d452663bd0e95baba7cfb
7
+ data.tar.gz: 484c2c63d5f22bf37cd4c74f7b478cc07352516c742f310c1a7c8140eb9c95b340f4e9659ddd4afbee8155a4a7c714bebf2a8d87d513cffd5694a6a1ddfef566
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: latias-string-commas
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - nattanon
@@ -17,7 +17,6 @@ executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
- - README.md
21
20
  - lib/latias/string.rb
22
21
  homepage: https://gitlab.opensource-technology.com/nattanon/latias-string-commas
23
22
  licenses:
data/README.md DELETED
@@ -1,30 +0,0 @@
1
- # Latias::String
2
- Short description and motivation.
3
-
4
- ## Usage
5
- How to use my plugin.
6
-
7
- ## Installation
8
- Add this line to your application's Gemfile:
9
-
10
- ```ruby
11
- gem 'latias-string-commas', '~> 0.1.1'
12
- ```
13
-
14
- ## Examples
15
- ```ruby
16
- include Latias::String
17
- ```
18
-
19
- ```ruby
20
- 2.6.5 :001 > buddist_date_format(Date.today) # Date
21
- => "15 มกราคม 2564"
22
- 2.6.5 :002 > buddist_date_format(Date.today, format: "%d") # Date
23
- => "15"
24
- 2.6.5 :003 > buddist_date_format(Date.today, format: "%d %y") # Date
25
- => "15 64"
26
- 2.6.5 :004 > buddist_date_format(Date.today, format: "%d %Y") # Date
27
- => "15 2564"
28
- 2.6.5 :005 > buddist_date_format(DateTime.now(), format: "%b %Y %H:%M:%S %z") # DateTime
29
- => "ม.ค. 2564 17:20:23 +0700"
30
- ```