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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ef19b45336c7174cad3412dc52d59f47452511f55ab5af05ed789e7a867cdc58
4
- data.tar.gz: cebcdc588d7ad2cee92fc6b4f985ed27832c6e265c7d0184234de7b0ac4b368f
3
+ metadata.gz: 95f94c6efad657d5436b9857c995f39a1429bba388f54e4a0e6271e8d473e13b
4
+ data.tar.gz: 3ba4ddf9a7bfebb814d78042268bfb4ad09baf3b4974b7085b832c5c978966f6
5
5
  SHA512:
6
- metadata.gz: 42f956ed1b6f3ac8e7be061a581a7854da276f2b09f5550d5389c446cf9ca4bee960637c266960500540a6d29a1d053492cf8fd19e9ec92a3aaf790076f80fe9
7
- data.tar.gz: ae6d6e445e77e5aca6d6e00c3c1183599979290c736570b496fed96c85efb94423a28ee50a459f1958b5830601fb47f2b8ce0eac73d57bf00db5da039a2e146f
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
- - test: |
17
+ - deps: |
18
18
  cd inkblot
19
19
  npm i tailwindcss @tailwindcss/cli @tailwindcss/typography
20
- bundle install --path vendor/bundle
21
- bundle exec rake || true
22
- - site: |
23
- cd inkblot/docs
24
- bundle exec ../exe/inkblot build
25
- - package: |
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
@@ -1,3 +1,3 @@
1
1
  example_id | status | run_time |
2
2
  --------------------------- | ------ | --------------- |
3
- ./spec/inkblot_spec.rb[1:1] | passed | 0.00037 seconds |
3
+ ./spec/inkblot_spec.rb[1:1] | passed | 0.00059 seconds |
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
- task default: %i[spec rubocop css]
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]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Inkblot
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inkblot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aleks Rutins