adamantite 0.0.15 → 0.0.16
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/adamantite.rb +1 -2
- data/lib/base/adamantite.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9d9398bc4a0f5151622ba4ebf47b0f00141692cb729f9a9aea737b01ff5d695b
|
|
4
|
+
data.tar.gz: e2d34a8fd9eb7f4e83140552df183e38c15ac4c0d8818a0241040da109e63154
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd1b56788da56f48a435b726f86dbc1e7ca5be056c2b8159b8d3ca1c008557abaaa32d35e3f43195848ea92bd4fa92fb70bd61ec8c6ec3ac5c22fbccd525a98f
|
|
7
|
+
data.tar.gz: 3e9c247280d0feea4d129d15239a35d444c4708d6e689969498cd74f863bba6124fd04260ff22ff219f92b27fe2d360837575c95da0f9fa65a01f3a5a904ef32
|
data/lib/adamantite.rb
CHANGED
|
@@ -147,9 +147,8 @@ module Adamantite
|
|
|
147
147
|
end
|
|
148
148
|
horizontal_box do
|
|
149
149
|
stretchy false
|
|
150
|
-
free_or_paid = @adamantite.free_tier ? 'free' : 'paid'
|
|
151
150
|
label_text = <<-TEXT
|
|
152
|
-
This is valid Adamantite installation on a #{
|
|
151
|
+
This is valid Adamantite installation on a #{@adamantite.master_license_tier} license.
|
|
153
152
|
TEXT
|
|
154
153
|
label(label_text)
|
|
155
154
|
end
|
data/lib/base/adamantite.rb
CHANGED
|
@@ -12,7 +12,7 @@ module Adamantite
|
|
|
12
12
|
include AdamantiteFileUtils
|
|
13
13
|
|
|
14
14
|
attr_reader :authenticated, :master_password, :master_password_salt, :stored_passwords,
|
|
15
|
-
:master_license_key, :
|
|
15
|
+
:master_license_key, :master_license_tier, :vault
|
|
16
16
|
|
|
17
17
|
OPSLIMIT = 2**20
|
|
18
18
|
MEMLIMIT = 2**24
|