flapjack 1.2.0 → 1.2.1rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/Gemfile-ruby1.9.lock +1 -1
- data/etc/flapjack_config.yaml.example +2 -0
- data/features/ack_after_sched_maint.feature +44 -0
- data/features/events.feature +7 -0
- data/features/steps/events_steps.rb +14 -0
- data/lib/flapjack/cli/maintenance.rb +40 -36
- data/lib/flapjack/data/entity_check.rb +3 -3
- data/lib/flapjack/data/migration.rb +70 -34
- data/lib/flapjack/data/notification_rule.rb +5 -0
- data/lib/flapjack/gateways/jsonapi/contact_methods.rb +1 -1
- data/lib/flapjack/gateways/jsonapi/report_methods.rb +4 -2
- data/lib/flapjack/gateways/pagerduty.rb +15 -5
- data/lib/flapjack/gateways/web.rb +12 -17
- data/lib/flapjack/redis_pool.rb +2 -0
- data/lib/flapjack/version.rb +1 -1
- data/spec/lib/flapjack/data/contact_spec.rb +8 -0
- data/spec/lib/flapjack/gateways/jsonapi/contact_methods_spec.rb +3 -1
- data/spec/lib/flapjack/gateways/jsonapi/report_methods_spec.rb +2 -1
- data/spec/lib/flapjack/gateways/pagerduty_spec.rb +2 -2
- data/spec/lib/flapjack/redis_pool_spec.rb +2 -1
- data/spec/service_consumers/pacts/flapjack-diner_v1.0.json +2428 -2429
- metadata +6 -4
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flapjack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.1rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lindsay Holmwood
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2014-
|
14
|
+
date: 2014-12-04 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: dante
|
@@ -393,6 +393,7 @@ files:
|
|
393
393
|
- dist/etc/init.d/flapjack-nagios-receiver
|
394
394
|
- dist/etc/init.d/flapper
|
395
395
|
- etc/flapjack_config.yaml.example
|
396
|
+
- features/ack_after_sched_maint.feature
|
396
397
|
- features/cli.feature
|
397
398
|
- features/cli_flapjack-feed-events.feature
|
398
399
|
- features/cli_flapjack-nagios-receiver.feature
|
@@ -636,9 +637,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
636
637
|
version: '0'
|
637
638
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
638
639
|
requirements:
|
639
|
-
- - "
|
640
|
+
- - ">"
|
640
641
|
- !ruby/object:Gem::Version
|
641
|
-
version:
|
642
|
+
version: 1.3.1
|
642
643
|
requirements: []
|
643
644
|
rubyforge_project:
|
644
645
|
rubygems_version: 2.2.2
|
@@ -646,6 +647,7 @@ signing_key:
|
|
646
647
|
specification_version: 4
|
647
648
|
summary: Intelligent, scalable, distributed monitoring notification system.
|
648
649
|
test_files:
|
650
|
+
- features/ack_after_sched_maint.feature
|
649
651
|
- features/cli.feature
|
650
652
|
- features/cli_flapjack-feed-events.feature
|
651
653
|
- features/cli_flapjack-nagios-receiver.feature
|