customization 1.0.0 → 1.0.2
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/lib/errors.rb +0 -6
- metadata +19 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0d2feb97fde32cea84f0d77e435fa77d8608082c23275f172396dd3d48525c15
|
|
4
|
+
data.tar.gz: b063cc01c04171822e2aa42e9d1ffaeefab8c2bb5d69d36b55872455cdeed3b1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d439939227424de81721ffbc3e9528c943f95a612ea57107e1e8f3f75b90f046144d1fb84865b0cbf55b6d71ae656a37f0d6e917e7b830aabbab824dd7317673
|
|
7
|
+
data.tar.gz: 5761eecb474822b5acc148c1e7d9c16c3cf2e87c55281a6f3aa378f8fb6e829647f0e2b9f4e094ff72b9d222fa51d1b75ad4eb2135bb1d842017aeb580e321f9
|
data/lib/errors.rb
CHANGED
|
@@ -13,12 +13,6 @@ module Customization
|
|
|
13
13
|
end
|
|
14
14
|
end
|
|
15
15
|
|
|
16
|
-
class InvalidFontSizeError < StandardError
|
|
17
|
-
def initialize(size)
|
|
18
|
-
super("Invalid font size: #{size}")
|
|
19
|
-
end
|
|
20
|
-
end
|
|
21
|
-
|
|
22
16
|
class InvalidBorderError < StandardError
|
|
23
17
|
def initialize(border)
|
|
24
18
|
super("Invalid text border style: #{border}")
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: customization
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ThatAlecs
|
|
@@ -9,7 +9,21 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2023-10-11 00:00:00.000000000 Z
|
|
12
|
-
dependencies:
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: other_gem
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '2.0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '2.0'
|
|
13
27
|
description: Customization is a library for customizing text with various effects
|
|
14
28
|
and colors.
|
|
15
29
|
email:
|
|
@@ -19,11 +33,12 @@ extra_rdoc_files: []
|
|
|
19
33
|
files:
|
|
20
34
|
- lib/customization.rb
|
|
21
35
|
- lib/errors.rb
|
|
22
|
-
homepage: https://github.com/thatalecs/
|
|
36
|
+
homepage: https://github.com/thatalecs/customization
|
|
23
37
|
licenses:
|
|
24
38
|
- MIT
|
|
25
39
|
metadata:
|
|
26
|
-
|
|
40
|
+
documentation_uri: https://github.com/thatalecs/customization/wiki
|
|
41
|
+
source_code_uri: https://github.com/thatalecs/customization
|
|
27
42
|
post_install_message:
|
|
28
43
|
rdoc_options: []
|
|
29
44
|
require_paths:
|