puma_backlog_detector 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 390c6ae8719583ea636bb11da329356bdeba00ee
4
- data.tar.gz: dcaafcf2a062c9851883076cac95061dedb15903
3
+ metadata.gz: 6c232c4a95c2d546e0a2ac07f9e4e96d4fa02384
4
+ data.tar.gz: 5bd2cbd98221ba9a5b6bf9b4300a8d6973cf557c
5
5
  SHA512:
6
- metadata.gz: c3f9992807274b5ffd9b06c7f43801c548342d9b6a06981b71cfc05670c8ea2af0a9ffd64097e8d23331974995a39b28b64209fff6eedc6861736e933c816087
7
- data.tar.gz: 192b569443c39911f844a97b79af605c93e3f3cf0c2d4f10519a777177a1cd3edb011136b0590832a9f99c2a63088ee0baf8b49d7d74ccff913001805a824600
6
+ metadata.gz: 152886643bdf4615cff795a59063865acf916871d19c96534f6580d000ea2b441625fa12611be2c8b9f1e0676a98f356d0779ef2bfc353a3be221cb930e8017d
7
+ data.tar.gz: e5900272148008d0c43ae174f6c1ae7a907cc8878d0d08fc1fc0c784e5031c9c8d9dd7002eccdae8a5b7eb571cf9c0fdebb9307939e7e98b90c180e6e6158865
@@ -0,0 +1,6 @@
1
+ 0.1.1
2
+ * Correct homepage in spec
3
+ * Specify license
4
+
5
+ 0.1.0
6
+ * Initial release
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2016 Conjur Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/Rakefile CHANGED
@@ -4,3 +4,23 @@ require "rspec/core/rake_task"
4
4
  RSpec::Core::RakeTask.new(:spec)
5
5
 
6
6
  task :default => :spec
7
+
8
+ task :headers do
9
+ require 'rubygems'
10
+ require 'copyright_header'
11
+
12
+ spec = Gem::Specification.load 'puma_backlog_detector.gemspec'
13
+
14
+ args = {
15
+ license: spec.license,
16
+ copyright_software: spec.name,
17
+ copyright_software_description: spec.summary,
18
+ :copyright_holders => ['Conjur Inc.'],
19
+ :copyright_years => ['2016'],
20
+ :add_path => 'lib:spec',
21
+ :output_dir => '.'
22
+ }
23
+
24
+ command_line = CopyrightHeader::CommandLine.new( args )
25
+ command_line.execute
26
+ end
@@ -1,3 +1,23 @@
1
+ #
2
+ # Copyright (C) 2016 Conjur Inc.
3
+ #
4
+ # Permission is hereby granted, free of charge, to any person obtaining a copy of
5
+ # this software and associated documentation files (the "Software"), to deal in
6
+ # the Software without restriction, including without limitation the rights to
7
+ # use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8
+ # the Software, and to permit persons to whom the Software is furnished to do so,
9
+ # subject to the following conditions:
10
+ #
11
+ # The above copyright notice and this permission notice shall be included in all
12
+ # copies or substantial portions of the Software.
13
+ #
14
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
16
+ # FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
17
+ # COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
18
+ # IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
+ #
1
21
  require "puma_backlog_detector/version"
2
22
  require "puma_backlog_detector/railtie" if defined? Rails
3
23
 
@@ -46,4 +66,4 @@ class PumaBacklogDetector
46
66
  end
47
67
  end
48
68
  end
49
- end
69
+ end
@@ -1,3 +1,23 @@
1
+ #
2
+ # Copyright (C) 2016 Conjur Inc.
3
+ #
4
+ # Permission is hereby granted, free of charge, to any person obtaining a copy of
5
+ # this software and associated documentation files (the "Software"), to deal in
6
+ # the Software without restriction, including without limitation the rights to
7
+ # use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8
+ # the Software, and to permit persons to whom the Software is furnished to do so,
9
+ # subject to the following conditions:
10
+ #
11
+ # The above copyright notice and this permission notice shall be included in all
12
+ # copies or substantial portions of the Software.
13
+ #
14
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
16
+ # FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
17
+ # COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
18
+ # IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
+ #
1
21
  class PumaBacklogDetector
2
22
  class Railtie < Rails::Railtie
3
23
  config.puma_backlog_detector = ActiveSupport::OrderedOptions.new
@@ -13,4 +33,4 @@ class PumaBacklogDetector
13
33
  end
14
34
  end
15
35
  end
16
- end
36
+ end
@@ -1,3 +1,23 @@
1
+ #
2
+ # Copyright (C) 2016 Conjur Inc.
3
+ #
4
+ # Permission is hereby granted, free of charge, to any person obtaining a copy of
5
+ # this software and associated documentation files (the "Software"), to deal in
6
+ # the Software without restriction, including without limitation the rights to
7
+ # use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8
+ # the Software, and to permit persons to whom the Software is furnished to do so,
9
+ # subject to the following conditions:
10
+ #
11
+ # The above copyright notice and this permission notice shall be included in all
12
+ # copies or substantial portions of the Software.
13
+ #
14
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
16
+ # FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
17
+ # COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
18
+ # IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
+ #
1
21
  class PumaBacklogDetector
2
- VERSION = "0.1.0"
22
+ VERSION = "0.1.1"
3
23
  end
@@ -8,9 +8,10 @@ Gem::Specification.new do |spec|
8
8
  spec.version = PumaBacklogDetector::VERSION
9
9
  spec.authors = ["Rafał Rzepecki"]
10
10
  spec.email = ["rafal@conjur.net"]
11
+ spec.license = "MIT"
11
12
 
12
13
  spec.summary = %q{Periodically check Puma backlog and write a flag file}
13
- spec.homepage = "https://github.com/dividedmind/puma_backlog_detector"
14
+ spec.homepage = "https://github.com/conjurinc/backlog-reporter"
14
15
 
15
16
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
16
17
  spec.bindir = "exe"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: puma_backlog_detector
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
  - Rafał Rzepecki
@@ -76,7 +76,9 @@ files:
76
76
  - ".gitignore"
77
77
  - ".rspec"
78
78
  - ".travis.yml"
79
+ - CHANGELOG.md
79
80
  - Gemfile
81
+ - LICENSE
80
82
  - README.md
81
83
  - Rakefile
82
84
  - bin/console
@@ -85,8 +87,9 @@ files:
85
87
  - lib/puma_backlog_detector/railtie.rb
86
88
  - lib/puma_backlog_detector/version.rb
87
89
  - puma_backlog_detector.gemspec
88
- homepage: https://github.com/dividedmind/puma_backlog_detector
89
- licenses: []
90
+ homepage: https://github.com/conjurinc/backlog-reporter
91
+ licenses:
92
+ - MIT
90
93
  metadata: {}
91
94
  post_install_message:
92
95
  rdoc_options: []