Commit 1c62fd0
Changed files (6)
bin/docker-build
@@ -1,4 +1,8 @@
#!/bin/sh
+set -e
+[ -z "$DEBUG" ] || set -x
+
+cd "$(dirname "$0")/.."
rm -fr pkg/
mkdir -p pkg/
bin/lint
@@ -1,11 +1,8 @@
#!/bin/sh
set -e
-
[ -z "$DEBUG" ] || set -x
-echo [$(date "+%H:%M:%S")] "==> Running setup…"
-bin/setup
+cd "$(dirname "$0")/.."
-echo [$(date "+%H:%M:%S")] "==> Running linters…"
bundle exec rake lint
bin/setup
@@ -1,8 +1,8 @@
-#!/usr/bin/env bash
-set -euo pipefail
-IFS=$'\n\t'
-set -vx
+#!/bin/sh
-bundle install
+set -e
+[ -z "$DEBUG" ] || set -x
+
+cd "$(dirname "$0")/.."
-# Do any other automated setup that you need to do here
+bundle install
bin/test
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+set -e
+[ -z "$DEBUG" ] || set -x
+
+cd "$(dirname "$0")/.."
+
+bundle exec rake spec
.ruby-version
@@ -1,1 +1,1 @@
-2.6.1
+2.6.7
minbox.gemspec
@@ -19,8 +19,8 @@ Gem::Specification.new do |spec|
# to allow pushing to a single host or delete this section to allow pushing to any host.
if spec.respond_to?(:metadata)
spec.metadata['homepage_uri'] = spec.homepage
- spec.metadata['source_code_uri'] = 'https://github.com/mokhan/minbox'
- spec.metadata['changelog_uri'] = 'https://github.com/mokhan/minbox/blob/CHANGELOG.md'
+ spec.metadata['source_code_uri'] = 'https://github.com/xlgmokha/minbox'
+ spec.metadata['changelog_uri'] = 'https://github.com/xlgmokha/minbox/blob/CHANGELOG.md'
else
raise 'RubyGems 2.0 or newer is required to protect against ' \
'public gem pushes.'