asana_exception_notifier 0.3.8 → 0.4.0
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/.rubocop.yml +3 -1
- data/init.rb +1 -0
- data/lib/asana_exception_notifier/classes/asana.rb +1 -0
- data/lib/asana_exception_notifier/classes/error_page.rb +1 -0
- data/lib/asana_exception_notifier/classes/unsafe_filter.rb +1 -0
- data/lib/asana_exception_notifier/helpers/application_helper.rb +1 -0
- data/lib/asana_exception_notifier/helpers/heredoc_helper.rb +1 -0
- data/lib/asana_exception_notifier/initializers/hash.rb +1 -0
- data/lib/asana_exception_notifier/initializers/zip.rb +1 -0
- data/lib/asana_exception_notifier/version.rb +3 -2
- data/lib/asana_exception_notifier.rb +1 -0
- data/lib/generators/asana_exception_notifier/install_generator.rb +1 -0
- data/lib/generators/asana_exception_notifier/templates/asana_exception_notifier.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bfdc4b272be9f6414781dafe42e0162f1ffee60e
|
|
4
|
+
data.tar.gz: f4f13163c9e1f825764b1d5c08c5934f97e75ded
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0f6f2005e5eebd44234b8f8307e171ef50aebf5f287a7d1055e1b6a7743c9612fd66f59659f6908dc4d6aab0dd86980345c7ac61765787167ebbecec9d9dfabf
|
|
7
|
+
data.tar.gz: 2d4d567f75b6aa041c22e6fb7d7e3f9943218bf7b1c8afb11bb1c62e5aedfab82e0dd7871d6817e46eaccd0950d4fbb6bc137d03e07f8389517047e44e2a0b19
|
data/.rubocop.yml
CHANGED
data/init.rb
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# Returns the version of the gem as a <tt>Gem::Version</tt>
|
|
2
3
|
module AsanaExceptionNotifier
|
|
3
4
|
# it prints the gem version as a string
|
|
@@ -15,9 +16,9 @@ module AsanaExceptionNotifier
|
|
|
15
16
|
# major release version
|
|
16
17
|
MAJOR = 0
|
|
17
18
|
# minor release version
|
|
18
|
-
MINOR =
|
|
19
|
+
MINOR = 4
|
|
19
20
|
# tiny release version
|
|
20
|
-
TINY =
|
|
21
|
+
TINY = 0
|
|
21
22
|
# prelease version ( set this only if it is a prelease)
|
|
22
23
|
PRE = nil
|
|
23
24
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: asana_exception_notifier
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- bogdanRada
|
|
@@ -447,7 +447,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
447
447
|
version: '2.5'
|
|
448
448
|
requirements: []
|
|
449
449
|
rubyforge_project:
|
|
450
|
-
rubygems_version: 2.
|
|
450
|
+
rubygems_version: 2.6.4
|
|
451
451
|
signing_key:
|
|
452
452
|
specification_version: 4
|
|
453
453
|
summary: Simple ruby implementation to send notifications to Asana when a exception
|