biscuit 0.0.2 → 0.0.3

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +3 -2
  3. data/lib/biscuit/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fb57c5f8b073343eadc0ea52329b05a9622620d6
4
- data.tar.gz: ab4f26f9fc41182755cf1a9e891c73bfb433b958
3
+ metadata.gz: 67093e6d5901c5c4540d2261be092987abec497a
4
+ data.tar.gz: 615e4f9a63df0b46ac94bd957f16b26c643d72a5
5
5
  SHA512:
6
- metadata.gz: 7b50cb8a20630f7a3642d4c216fcc6a8e1d7faaef0d1fdfae5d6a86af12c379263d0f1bcbef4f26f8c721dd3f46f9ac7f7c0f0d41070dc598d6b3473e8ee020c
7
- data.tar.gz: ff7c3e94a73ccaac6da07e3f7e57523690f41f5acf3a45e71278342caa3ee077fe572296bd8e3871b2db859dc9e9b4612bb849b2b479aee393941d3a9eef98bf
6
+ metadata.gz: 79f6532665c946ad7159975137a41716001fc4f58f5c101ba6db7b9ab35956fa9548ab7a31afc9a54b60413e668ddb1761ea783bc55864970126387749d643b3
7
+ data.tar.gz: b5d1739ddd4f32b931c682ffb3bd327e17707e075ad8725b22323d72259cfef1cb3e9d70e6e52802ed22d0344094f6027358cb93b9a886096e019b67280c54f7
data/Rakefile CHANGED
@@ -1,6 +1,7 @@
1
1
  require "bundler/gem_tasks"
2
2
  require 'open-uri'
3
- require_relative 'lib/biscuit/version'
3
+
4
+ UPSTREAM_VERSION = '0.1.2'
4
5
 
5
6
  def fetch(release_url)
6
7
  tgz_path = download_file(release_url)
@@ -19,7 +20,7 @@ end
19
20
 
20
21
  task :default do
21
22
  platform = Gem::Platform.local
22
- base_release_url = "https://github.com/dcoker/biscuit/releases/download/v#{Biscuit::VERSION}/biscuit"
23
+ base_release_url = "https://github.com/dcoker/biscuit/releases/download/v#{UPSTREAM_VERSION}/biscuit"
23
24
 
24
25
  if platform.os == 'darwin' && platform.cpu == 'x86_64'
25
26
  fetch("#{base_release_url}-darwin_amd64.tgz")
@@ -1,3 +1,3 @@
1
1
  module Biscuit
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: biscuit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Suan-Aik Yeo