node_heartbeat 0.1.0 → 0.1.1

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
  SHA1:
3
- metadata.gz: 07cd169f8231f1ce87666f75b3ea4d5b2bbea70f
4
- data.tar.gz: 787e9b5120b560f4e403777effa9c38d3092f44b
3
+ metadata.gz: 701dd0ed35ee00170ed624fff370d668142c643f
4
+ data.tar.gz: 852e397b55f65305dd84d35696a1f1e27baf7922
5
5
  SHA512:
6
- metadata.gz: bf15c9a5159a3d84f70a9b6b4c6ef3b3a1fd93a28d6aa9136f8080b6fa602ebb2e94a905ad790c509abf3d151e1ed53ed27089b0dc7501ae9df1c83cdbf4477e
7
- data.tar.gz: 41c3de267ea1967abe6c86f9fc41207750ff1fa9d993e8c35f42b2ddd71a7da58f1d825a64e304a88c6729ab4917ea8f83a97ec707571902687b21d5382368be
6
+ metadata.gz: f194f54ab745da67c00e1a7421219d14211981621845dda80d818e7a1ee01f329833c090a7da184d07be2c2910883097719a040358605fea711cd30718eb1a53
7
+ data.tar.gz: 7772b05c0ef7bff80822a7da14b5d63af27646f0cac45fd3be7ba3058fade41374e7ac4d8aff42b414402acc09199671f72e2a6666ff5ac359f89660bc007b7c
data/Dockerfile CHANGED
@@ -5,7 +5,7 @@ RUN addgroup heartbeat && \
5
5
  adduser -S -G heartbeat heartbeat
6
6
 
7
7
  # Use this to install an official release
8
- RUN apk --no-cache add libxml2 libxslt2 \
8
+ RUN apk --no-cache add libxml2 libxslt \
9
9
  && apk --no-cache add --virtual build-dependencies build-base libxml2-dev libxslt-dev \
10
10
  && gem install nokogiri -- --use-system-libraries \
11
11
  && gem install node_heartbeat \
@@ -10,6 +10,7 @@ module NodeHeartbeat
10
10
  desc 'start', 'Start the heartbeat'
11
11
  option :bucket, aliases: '-b', required: true, type: :string, banner: '<s3_bucket>'
12
12
  def start
13
+ $stdout.sync = true
13
14
  require 'node_heartbeat/run_heartbeat'
14
15
  RunHeartbeat.call(bucket: options[:bucket])
15
16
  end
@@ -1,3 +1,3 @@
1
1
  module NodeHeartbeat
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: node_heartbeat
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Schlesinger