slimy 0.0.6 → 0.0.8

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
  SHA256:
3
- metadata.gz: a6dbcc568ba58fccda86f40e6959126fa900549ba439fe49dba1ca483858cda6
4
- data.tar.gz: 8a98751cd359833543500b2ae92a16008397964e3ade1f4f3451d48793b716f9
3
+ metadata.gz: a7bbd38d7cd5b9269c0cd5edaea3bbf8fa255b3ce33e44fc285a5ecdc576acd4
4
+ data.tar.gz: 986ff6da638deb0ad701a942bfdbe1256320710f515f24f2ff7a006ed20eebd8
5
5
  SHA512:
6
- metadata.gz: bdd80bb4e756693d01aac4417e2350f018cbb21fd94bd09377ab7bbe66570f9271660713875696f0ef728e97508947f8f086c61ce324488f1409fe4b8ef5d394
7
- data.tar.gz: e41b5ec01ec5b5964b2d1f236ed56998b561a6275a93291a9598ae278095ee9ded67dad22f9d1a3f113713f2e493a470c14ae5a7b2ed170b32261839d720be21
6
+ metadata.gz: edd0ce5c527038f5a2290549dd4dda59cb4ddbfcf6c429fd22a80201077219759f1572ccd1e682b3d005fe4bde7a12ee1397a5ebb6dd6d5c7aa7d743050c0b33
7
+ data.tar.gz: 51bd62562b86c1eba55b65df3369c653545908dd858c5be3ce6d6fbb5095b8adad2bb9f3b0fed295163af7da26ae7671760790058157b60ee4894a705eb2c303
@@ -1,3 +1,11 @@
1
+ ### v0.0.8 - 2020-12-08
2
+ - remove controller_class_name use class.name
3
+ ### v0.0.7 - 2020-12-07
4
+
5
+ #### Rails Integration
6
+
7
+ - controller tag will now use controller_class_name to prevent potential namespace conflicts
8
+
1
9
  ### v0.0.6 - 2020-12-07
2
10
 
3
11
  - Fix datadog issues
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- slimy (0.0.6)
4
+ slimy (0.0.8)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -37,7 +37,7 @@ module Slimy
37
37
  end
38
38
 
39
39
  before_action do
40
- add_sli_tag("controller", controller_name)
40
+ add_sli_tag("controller", self.class.name)
41
41
  add_sli_tag("action", action_name)
42
42
  end
43
43
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Slimy
4
- VERSION = "0.0.6"
4
+ VERSION = "0.0.8"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slimy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tyler Henrichs