acts_as_monitor 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,4 +1,7 @@
1
- 0.1.0 ToDo
1
+ 0.1.1 (June 15, 2012)
2
+ - BugFixing
3
+
4
+ 0.1.0 (June 15, 2012)
2
5
  - BugFixing
3
6
 
4
7
  0.0.9 (May 28, 2012)
@@ -11,7 +11,8 @@ module ActsAsMonitorHelper
11
11
  end
12
12
 
13
13
  def monitor_tag_js()
14
- content_tag(:div, "/#{root_path}", :id => 'acts_as_monitor_status_window', :style => "display: none;") +
14
+ path = root_path.to_s
15
+ content_tag(:div, path, :id => 'acts_as_monitor_status_window', :style => "display: none;") +
15
16
  javascript_include_tag("acts_as_monitor_javascript.js") +
16
17
  stylesheet_link_tag('acts_as_monitor.css')
17
18
  end
@@ -1,3 +1,3 @@
1
1
  module ActsAsMonitor
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -5,10 +5,6 @@ document.observe('dom:loaded', function()
5
5
  //alert(application_root);
6
6
 
7
7
  function create_status_window() {
8
- /*new Insertion.Bottom(
9
- document.body,
10
- "<div id='acts_as_monitor_status_window'><%= Rails.root %></div>"
11
- );*/
12
8
  var status_window = $('acts_as_monitor_status_window');
13
9
  Position.absolutize(status_window);
14
10
  status_window.observe('click', function(ev) {status_window.fade(); });
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: acts_as_monitor
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 1
10
+ version: 0.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Andrea Bignozzi