arsenal_console_colors 0.2.0 → 0.3.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 +5 -5
- data/CODE_OF_CONDUCT.md +1 -1
- data/Gemfile.lock +2 -2
- data/lib/arsenal_console_colors.rb +5 -1
- data/lib/arsenal_console_colors/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: de939c9f9f8f0a17cdb8adf52e4294fb9e193c483f88b3fce02ce80536c33bc7
|
|
4
|
+
data.tar.gz: 2acd371f6c91606a96e769a1fda3cbb68a153fe67a6d0cd6b6f929cdac2bae50
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2258c6e60d249086be348cfa1673e97c7f3f212ee3182b1db04e62ebe6b7186f0f45b869f31a3b416befae89ddd17c484cd71f375de7d955438ba7101145e952
|
|
7
|
+
data.tar.gz: 4fcf4a9d9eb002bc8af32de10259ebbee2f4e6b53f5910147a91bda602f245bad7632dc6ac92e19417c1a77c188743a2eb41436bea90d696321d83a33d178c09
|
data/CODE_OF_CONDUCT.md
CHANGED
|
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
|
|
|
55
55
|
## Enforcement
|
|
56
56
|
|
|
57
57
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
|
-
reported by contacting the project team at
|
|
58
|
+
reported by contacting the project team at admin@arsenalwebsystems.com. All
|
|
59
59
|
complaints will be reviewed and investigated and will result in a response that
|
|
60
60
|
is deemed necessary and appropriate to the circumstances. The project team is
|
|
61
61
|
obligated to maintain confidentiality with regard to the reporter of an incident.
|
data/Gemfile.lock
CHANGED
|
@@ -13,6 +13,10 @@ module ArsenalConsoleColors
|
|
|
13
13
|
def self.tracking
|
|
14
14
|
return "\x1b[30;42m[TRACKING]\x1b[0m"
|
|
15
15
|
end
|
|
16
|
+
|
|
17
|
+
def self.cart
|
|
18
|
+
return "\x1b[35;42m[CART]\x1b[0m"
|
|
19
|
+
end
|
|
16
20
|
|
|
17
21
|
def self.devise
|
|
18
22
|
return "\x1b[37;44m[DEVISE]\x1b[0m"
|
|
@@ -115,7 +119,7 @@ module ArsenalConsoleColors
|
|
|
115
119
|
end
|
|
116
120
|
|
|
117
121
|
def self.all
|
|
118
|
-
puts "#{self.successful}\n#{self.failed}\n#{self.tracking}\n#{self.devise}\n#{self.email}\n#{self.sms}\n#{self.phone}\n#{self.video}\n#{self.fax}\n#{self.stripe}\n#{self.paypal}\n#{self.user}\n#{self.admin}\n#{self.system}\n#{self.api}\n#{self.webhook}\n#{self.test}\n#{self.custom} (NOTE: No Options Set)\n\n"
|
|
122
|
+
puts "#{self.successful}\n#{self.failed}\n#{self.tracking}\n#{self.cart}\n#{self.devise}\n#{self.email}\n#{self.sms}\n#{self.phone}\n#{self.video}\n#{self.fax}\n#{self.stripe}\n#{self.paypal}\n#{self.user}\n#{self.admin}\n#{self.system}\n#{self.api}\n#{self.webhook}\n#{self.test}\n#{self.custom} (NOTE: No Options Set)\n\n"
|
|
119
123
|
end
|
|
120
124
|
|
|
121
125
|
def self.help
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: arsenal_console_colors
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Arsenal Admin
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-12-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -94,8 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
94
94
|
- !ruby/object:Gem::Version
|
|
95
95
|
version: '0'
|
|
96
96
|
requirements: []
|
|
97
|
-
|
|
98
|
-
rubygems_version: 2.5.1
|
|
97
|
+
rubygems_version: 3.0.3
|
|
99
98
|
signing_key:
|
|
100
99
|
specification_version: 4
|
|
101
100
|
summary: Tools to help colorize console output.
|