fluent-plugin-cloudwatch-ingest 0.1.1 → 0.1.2

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: 6e997312ee55cb11ec9a88c67dd84f0b45cf7061
4
- data.tar.gz: d4ce794c73eb748bb393c99a7555c8ad36ec3e85
3
+ metadata.gz: 4817bc8af47c092d500a59c42dac25718b284e45
4
+ data.tar.gz: a9d30e77262f917e4098d33195389a93cad10064
5
5
  SHA512:
6
- metadata.gz: 12c5ef94bf5d62f405e2da96473f17e73a728187c0a92f73c2eae201278fe5cba7f3704b69cb81099248cedcc18be4478db883647dffa660d32ca6ca0603287e
7
- data.tar.gz: ea13b787d4e3926d8c72240d4453dd8db2f8d400dc4bd0de2be77582a3a1017e75190875c7d2038fb38bd8aa2fdbf87a96f8e0ed37a795c000c8410e63ca259b
6
+ metadata.gz: 66ce7780fd4044faeac19b40f1a14344934bea520bc9c250fab75abccec1274956bb15f7d950c7900eb6bf5e81e0b396a1cb751585c75279a9a03a819b87e582
7
+ data.tar.gz: d48155dc5676eea7c2002cf7a4f69685ed9bc403d3df55c9ebb25bb04088e3a5032149e63b38803c8fdd526cbf9191d4db902c0544d63ca1b61784433bc85b6c
@@ -0,0 +1,2 @@
1
+ ---
2
+ :rubygems_api_key: REPLACEME
data/bin/deploy ADDED
@@ -0,0 +1,10 @@
1
+ #!/bin/bash
2
+ #
3
+ # deploy to rubygems.
4
+
5
+ gem=$(ls pkg/*.gem | tail -1)
6
+ mkdir -p /home/ubuntu/.gem/
7
+ cp assets/credentials /home/ubuntu/.gem/credentials
8
+ sed -i "s/REPLACEME/${rubygems_api_key}/g" /home/ubuntu/.gem/credentials
9
+ chmod 0600 /home/ubuntu/.gem/credentials
10
+ gem push ${gem}
data/circle.yml CHANGED
@@ -3,3 +3,9 @@ test:
3
3
  - bundle exec rake
4
4
  post:
5
5
  - cp pkg/*.gem ${CIRCLE_ARTIFACTS}
6
+ deployment:
7
+ release:
8
+ tag: /^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(-(0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(\.(0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*)?(\+[0-9a-zA-Z-]+(\.[0-9a-zA-Z-]+)*)?$/
9
+ owner: sampointer
10
+ commands:
11
+ - bin/deploy
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
16
16
  # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
17
17
  # delete this section to allow pushing this gem to any host.
18
18
  if spec.respond_to?(:metadata) # rubocop:disable all
19
- spec.metadata['allowed_push_host'] = "https://rubygems.org"
19
+ spec.metadata['allowed_push_host'] = 'https://rubygems.org'
20
20
  else
21
21
  raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.' # rubocop:disable all
22
22
  end
@@ -2,7 +2,7 @@ module Fluent
2
2
  module Plugin
3
3
  module Cloudwatch
4
4
  module Ingest
5
- VERSION = '0.1.1'.freeze
5
+ VERSION = '0.1.2'.freeze
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-cloudwatch-ingest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Pointer
@@ -109,7 +109,9 @@ files:
109
109
  - LICENSE
110
110
  - README.md
111
111
  - Rakefile
112
+ - assets/credentials
112
113
  - bin/console
114
+ - bin/deploy
113
115
  - bin/setup
114
116
  - circle.yml
115
117
  - fluent-plugin-cloudwatch-ingest.gemspec