skrift-boxdrawing 0.1.0 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3c7c06fda622d08432995d4b07d25eefcb5b0ad3afc418e43c90db3cfae4b5d5
4
- data.tar.gz: ff2ba884bb2d66d7f6b4b687651516e53c255a9c5b8cb78964f967e1175820d4
3
+ metadata.gz: 84fb172819ba363ca8c00783a7eb0eec4723b00ecd8970e5f4fa66de404f3e22
4
+ data.tar.gz: e4ca01fc0cfef55aad213a8911b2d73e0ca1eb7b8e1d3f56bf6250cb09ab4f95
5
5
  SHA512:
6
- metadata.gz: c24368fed3cf853540ff2fd951f9b4e7e334ef0a8da2aca8fc5bf1e7b55bec0d10024cd358e0fd3c950a10fa3c3df2b1f875c1dbc2c23f1e9108276ff2bdb05a
7
- data.tar.gz: 86c8f031e4fc1122abb238c70784d01a798f492672aa7133746231548565f97f0a31b870c4ea1f8596859c7dee615764e72b2e4d4c843021c77c95e09e02ff13
6
+ metadata.gz: f4dce9e537541ecabd83d048d81f225806965b3eacea7755f4170fa1fd3841af4c28f7b612dc1308207dbb87daa0076afc53b934ecb2332c40fc14ebcffa6fb5
7
+ data.tar.gz: de73a3579d0ec469f1fd3bb018ba65502141e382b1f2de4ca8a2f06200b03078dd24a1bf4b40a8ac77b702ef0e6bb1526cdbd9e8bb1f6ec44becdce6bf4939da
data/Gemfile CHANGED
@@ -4,11 +4,16 @@ source "https://rubygems.org"
4
4
 
5
5
  gemspec
6
6
 
7
- # skrift is developed alongside this plugin. To work against a local checkout,
8
- # set a per-machine override (stored in ~/.bundle/config, never committed):
7
+ # skrift is a sibling gem in this monorepo (in the skrift/ subdir) and not yet
8
+ # on RubyGems. A `git do end` block lets Bundler find its gemspec in the
9
+ # subdir. To develop against a local checkout, set a single override at the
10
+ # monorepo root (in your global ~/.bundle/config, never committed):
9
11
  #
10
- # bundle config set --local local.skrift /path/to/skrift
11
- gem "skrift", git: "https://github.com/vidarh/skrift.git", branch: "master"
12
+ # bundle config set --global disable_local_branch_check true
13
+ # bundle config set --global local.skrift /path/to/skrift
14
+ git "https://github.com/vidarh/skrift.git", branch: "master" do
15
+ gem "skrift"
16
+ end
12
17
 
13
18
  gem "rake", "~> 13.0"
14
19
  gem "rspec", "~> 3.0"
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Skrift
4
4
  class BoxDrawing
5
- VERSION = "0.1.0"
5
+ VERSION = "0.2.0"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: skrift-boxdrawing
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vidar Hokstad