viaduct-toolkit 1.0.7 → 1.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/vdt +2 -1
- data/lib/viaduct/toolkit/version.rb +1 -1
- data/viaduct-toolkit.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b42c0089908706f994489f0605d4db622c133ea4
|
4
|
+
data.tar.gz: 7b7210759489af94bb3631d043962c051e4de9d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 590dd2c1bbf38111fd6f2aa517dada71d57addfec204a261de94dcaac57c2f07aeb24acd14cfd527787c9e04f8495a805eafd1eae2e359fa19842ee22ea0b86e
|
7
|
+
data.tar.gz: b8862753e232b2bb94a01f87943b78590d33bbac044c931846aead5099246e065a438bc2e50fed3323fd99880805bb29d0def18e9d55cc8d394cd5b045138d96
|
data/bin/vdt
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
-
$:.unshift(File.expand_path(File.join('..', '..', 'lib'), __FILE__))
|
3
2
|
ENV['BUNDLE_GEMFILE'] = File.expand_path('../../Gemfile', __FILE__)
|
4
3
|
ENV['SSL_CERT_FILE'] = File.expand_path('../../cacert.pem', __FILE__)
|
5
4
|
require 'bundler/setup'
|
5
|
+
|
6
|
+
$:.unshift(File.expand_path(File.join('..', '..', 'lib'), __FILE__))
|
6
7
|
require 'viaduct/toolkit'
|
7
8
|
|
8
9
|
Viaduct::Toolkit.add_commands
|
data/viaduct-toolkit.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.homepage = "http://viaduct.io"
|
11
11
|
s.summary = "A developer toolkit for working with Viaduct from an CLI"
|
12
12
|
s.description = "A set of useful tools to help developers use & manage their Viaduct applications."
|
13
|
-
s.files
|
13
|
+
s.files = Dir["{bin,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md", "Gemfile", "Gemfile.lock", "viaduct-toolkit.gemspec", "cacert.pem"]
|
14
14
|
s.executables << "vdt"
|
15
15
|
s.licenses = ["MIT"]
|
16
16
|
s.add_dependency 'addressable', '= 2.3.6'
|