inkblot 0.2.0 → 0.2.1
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/.build.yml +8 -10
- data/.rspec_status +1 -1
- data/Rakefile +9 -1
- data/lib/inkblot/version.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: 95f94c6efad657d5436b9857c995f39a1429bba388f54e4a0e6271e8d473e13b
|
|
4
|
+
data.tar.gz: 3ba4ddf9a7bfebb814d78042268bfb4ad09baf3b4974b7085b832c5c978966f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 55065a701aefcd3058ddd751b75f1845a4aa75575b85bd97ded065a7755bf8184100de936253bbd8afcae1b094b8012a229c4d84ea24c6bca20d9e060d14460a
|
|
7
|
+
data.tar.gz: 12cb3d55f5badadc758f1b1336e11b446c425efbe283eb1a000aac767c610754aaa06f66b4c3e404f72cc629e7306b5732019d79854773a9dd4ad820450c1e42
|
data/.build.yml
CHANGED
|
@@ -11,19 +11,17 @@ packages:
|
|
|
11
11
|
- ruby-bundler
|
|
12
12
|
oauth: "pages.sr.ht/PAGES:RW"
|
|
13
13
|
environment:
|
|
14
|
-
site: farthergate.com
|
|
14
|
+
site: inkblot.farthergate.com
|
|
15
15
|
TAILWINDCSS_INSTALL_DIR: node_modules/.bin
|
|
16
16
|
tasks:
|
|
17
|
-
-
|
|
17
|
+
- deps: |
|
|
18
18
|
cd inkblot
|
|
19
19
|
npm i tailwindcss @tailwindcss/cli @tailwindcss/typography
|
|
20
|
-
bundle
|
|
21
|
-
bundle
|
|
22
|
-
-
|
|
23
|
-
cd inkblot
|
|
24
|
-
bundle exec
|
|
25
|
-
|
|
26
|
-
cd inkblot/docs/_build
|
|
27
|
-
tar -cvz . > ../../../site.tar.gz
|
|
20
|
+
bundle config set path vendor/bundle
|
|
21
|
+
bundle install
|
|
22
|
+
- build: |
|
|
23
|
+
cd inkblot
|
|
24
|
+
bundle exec rake
|
|
25
|
+
tar -C docs/_build/ -cvz . > ../site.tar.gz
|
|
28
26
|
- upload: |
|
|
29
27
|
hut pages publish -d $site site.tar.gz
|
data/.rspec_status
CHANGED
data/Rakefile
CHANGED
|
@@ -13,4 +13,12 @@ task :css do
|
|
|
13
13
|
system("tailwindcss -i tailwind.css --minify -o lib/inkblot.min.css")
|
|
14
14
|
end
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
require "inkblot/cli"
|
|
17
|
+
|
|
18
|
+
task :docs do
|
|
19
|
+
FileUtils.cd 'docs'
|
|
20
|
+
Inkblot::Cli.new.build
|
|
21
|
+
puts 'built docs'
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
task default: %i[spec css docs]
|
data/lib/inkblot/version.rb
CHANGED