controller_action_hud 0.0.1 → 0.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 51bf6dc9451673ef76349d4eff4e4235d576140e
4
- data.tar.gz: bd9e3ddaaab8e7cbd32a37ee2818550e04d62d52
3
+ metadata.gz: 85aa55beee2199f35f05faccd5fc2468f6ff7905
4
+ data.tar.gz: 50b82e596d8f08959c857883290c9c8acf9a7b18
5
5
  SHA512:
6
- metadata.gz: 7a29a4c85baa232602bfb945b3c6c3d72f5c8af932fd02ee1ff27d159c1b064dd34615004ff1b12a2fbafe62947b2e3fc2b47ec1b8e482e77285965419670b30
7
- data.tar.gz: 38879b96d950f086690566d033861d277074ceb09533965eef113668222a2884d0cc1cb40771058bf3103f79f1cc68e174c8b4bb3edbea265ddaf5f554ef68f7
6
+ metadata.gz: 4bd2226111be469f5c1ef91b4b5759a6a66c821d5a658c7596682c8dbc30131d5123dd3b62acee62b7c6c888bb9d8703d7942e4f518370cf143386cdfae3a374
7
+ data.tar.gz: 1e7774a144a72eb3050f296713dd719c5e43cd584975d625404fef9ae45f254a60b478dc89d1e6cd9fc9d1ff359c20313b9d3d3478004ed6d1d58fa5123f726e
data/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  Add it to your Gemfile with
6
6
  ```
7
- gem 'controller_action_hud', git: 'git://github.com/daveallie/controller_action_hud.git'
7
+ gem 'controller_action_hud'
8
8
  ```
9
9
 
10
10
  Now add the widget to your application layout, like
@@ -1,3 +1,3 @@
1
1
  module ControllerActionHUD
2
- VERSION = '0.0.1'
2
+ VERSION = '0.0.2'
3
3
  end
@@ -32,7 +32,7 @@ module ControllerActionHUD
32
32
 
33
33
  module Helper
34
34
  def controller_action_hud_widget
35
- html = Widget.css + Widget.html(params[:controller], params[:action])
35
+ html = Widget.css + Widget.html(controller_name, action_name)
36
36
  html.respond_to?(:html_safe) ? html.html_safe : html
37
37
  end
38
38
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: controller_action_hud
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dave Allie