alphabets 0.1.3 → 1.0.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/README.md +1 -1
- data/Rakefile +1 -1
- data/lib/alphabets/version.rb +3 -3
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 20cc18ecb226c6c72b3d03c80c58f5ad16b2e385
|
|
4
|
+
data.tar.gz: 5d503d887290c139ea920cd06aa05c5f92431a3b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4a375e07ac355c395c8e520e216c247ee72bb5b9b8b85c8110e5c1e72f5be11887815ddb5e80976411f914a02911ab5dc39f99e9ce6d6aa786713e5a8791b30d
|
|
7
|
+
data.tar.gz: 4259ac17a3c0743e2a70e79ae1dc65def9bfacc7baa5f06f1693d39cbfbd902c88ac222d6784282e18261e7dcf605e12777590ea1f2fae6b8408a10f22206fdd
|
data/README.md
CHANGED
data/Rakefile
CHANGED
|
@@ -5,7 +5,7 @@ Hoe.spec 'alphabets' do
|
|
|
5
5
|
|
|
6
6
|
self.version = Alphabet::VERSION
|
|
7
7
|
|
|
8
|
-
self.summary = "alphabets - "
|
|
8
|
+
self.summary = "alphabets - alphabet (a-z) helpers incl. unaccent, downcase, variants, and more"
|
|
9
9
|
self.description = summary
|
|
10
10
|
|
|
11
11
|
self.urls = ['https://github.com/sportdb/sport.db']
|
data/lib/alphabets/version.rb
CHANGED
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
## todo/check: use a module Alphabets with s to keep version and banner separate - why? why not?
|
|
5
5
|
|
|
6
6
|
class Alphabet
|
|
7
|
-
MAJOR =
|
|
8
|
-
MINOR =
|
|
9
|
-
PATCH =
|
|
7
|
+
MAJOR = 1 ## todo: namespace inside version or something - why? why not??
|
|
8
|
+
MINOR = 0
|
|
9
|
+
PATCH = 0
|
|
10
10
|
VERSION = [MAJOR,MINOR,PATCH].join('.')
|
|
11
11
|
|
|
12
12
|
def self.version
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: alphabets
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gerald Bauer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-05-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rdoc
|
|
@@ -38,7 +38,8 @@ dependencies:
|
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '3.16'
|
|
41
|
-
description:
|
|
41
|
+
description: alphabets - alphabet (a-z) helpers incl. unaccent, downcase, variants,
|
|
42
|
+
and more
|
|
42
43
|
email: opensport@googlegroups.com
|
|
43
44
|
executables: []
|
|
44
45
|
extensions: []
|
|
@@ -89,5 +90,6 @@ rubyforge_project:
|
|
|
89
90
|
rubygems_version: 2.5.2
|
|
90
91
|
signing_key:
|
|
91
92
|
specification_version: 4
|
|
92
|
-
summary: alphabets -
|
|
93
|
+
summary: alphabets - alphabet (a-z) helpers incl. unaccent, downcase, variants, and
|
|
94
|
+
more
|
|
93
95
|
test_files: []
|