buildbox 0.3.6 → 0.3.7
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/Gemfile.lock +1 -1
- data/bin/buildbox +0 -5
- data/buildbox-ruby.gemspec +3 -3
- data/lib/buildbox/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1e8278856f469e2aa4e9e4faf3598c3605739e5f
|
|
4
|
+
data.tar.gz: 331cfc253502c23a06aef39f0850acd1d03e24ee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 19f6baa2a8c0c27cbb3b4c5070923f79554db2be7a31cb3e06586fc2229e52d843c6b952732c22c6b34e4252bdb3906f4092777b4f52a754434ac3854b9c07dd
|
|
7
|
+
data.tar.gz: 02ca8b610d9f98e9ad3d03a41da5e6ee7552106159cb6f48517466e6f8b9b6d243d21172e1cd9929ac4695ab87b8682f061583bdb88c6ddc974c0b1c190972f7
|
data/Gemfile.lock
CHANGED
data/bin/buildbox
CHANGED
|
@@ -11,11 +11,6 @@ root_dir = File.expand_path(File.join(File.dirname(__FILE__), '..'))
|
|
|
11
11
|
lib_dir = File.join(root_dir, 'lib')
|
|
12
12
|
$LOAD_PATH.unshift(lib_dir) unless $LOAD_PATH.include?(lib_dir)
|
|
13
13
|
|
|
14
|
-
# Setup bundler correctly
|
|
15
|
-
ENV['BUNDLE_GEMFILE'] ||= File.join(root_dir, "Gemfile")
|
|
16
|
-
require 'bundler'
|
|
17
|
-
Bundler.setup(:default)
|
|
18
|
-
|
|
19
14
|
require 'buildbox'
|
|
20
15
|
Buildbox.logger.level = Logger::DEBUG if ENV['DEBUG'] == 'true'
|
|
21
16
|
Buildbox::CLI.new(ARGV).parse
|
data/buildbox-ruby.gemspec
CHANGED
|
@@ -8,9 +8,9 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = Buildbox::VERSION
|
|
9
9
|
spec.authors = ["Keith Pitt"]
|
|
10
10
|
spec.email = ["me@keithpitt.com"]
|
|
11
|
-
spec.description = %q{Ruby
|
|
12
|
-
spec.summary = %q{Ruby
|
|
13
|
-
spec.homepage = ""
|
|
11
|
+
spec.description = %q{Ruby agent for buildbox}
|
|
12
|
+
spec.summary = %q{Ruby agent for buildbox}
|
|
13
|
+
spec.homepage = "https://github.com/buildboxhq/buildbox-ruby"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
data/lib/buildbox/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: buildbox
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Keith Pitt
|
|
@@ -136,7 +136,7 @@ dependencies:
|
|
|
136
136
|
- - '>='
|
|
137
137
|
- !ruby/object:Gem::Version
|
|
138
138
|
version: '0'
|
|
139
|
-
description: Ruby
|
|
139
|
+
description: Ruby agent for buildbox
|
|
140
140
|
email:
|
|
141
141
|
- me@keithpitt.com
|
|
142
142
|
executables:
|
|
@@ -205,7 +205,7 @@ files:
|
|
|
205
205
|
- spec/spec_helper.rb
|
|
206
206
|
- spec/support/silence_logger.rb
|
|
207
207
|
- spec/support/webmock.rb
|
|
208
|
-
homepage:
|
|
208
|
+
homepage: https://github.com/buildboxhq/buildbox-ruby
|
|
209
209
|
licenses:
|
|
210
210
|
- MIT
|
|
211
211
|
metadata: {}
|
|
@@ -228,7 +228,7 @@ rubyforge_project:
|
|
|
228
228
|
rubygems_version: 2.0.3
|
|
229
229
|
signing_key:
|
|
230
230
|
specification_version: 4
|
|
231
|
-
summary: Ruby
|
|
231
|
+
summary: Ruby agent for buildbox
|
|
232
232
|
test_files:
|
|
233
233
|
- spec/buildbox/buildbox/agent_spec.rb
|
|
234
234
|
- spec/buildbox/buildbox/api_spec.rb
|