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 +4 -4
- data/assets/credentials +2 -0
- data/bin/deploy +10 -0
- data/circle.yml +6 -0
- data/fluent-plugin-cloudwatch-ingest.gemspec +1 -1
- data/lib/fluent/plugin/cloudwatch/ingest/version.rb +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4817bc8af47c092d500a59c42dac25718b284e45
|
4
|
+
data.tar.gz: a9d30e77262f917e4098d33195389a93cad10064
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 66ce7780fd4044faeac19b40f1a14344934bea520bc9c250fab75abccec1274956bb15f7d950c7900eb6bf5e81e0b396a1cb751585c75279a9a03a819b87e582
|
7
|
+
data.tar.gz: d48155dc5676eea7c2002cf7a4f69685ed9bc403d3df55c9ebb25bb04088e3a5032149e63b38803c8fdd526cbf9191d4db902c0544d63ca1b61784433bc85b6c
|
data/assets/credentials
ADDED
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'] =
|
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
|
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.
|
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
|