visionmedia-bind 0.0.2 → 0.0.5

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.
@@ -1,4 +1,8 @@
1
1
 
2
+ === 0.0.3 / 2009-03-03
3
+
4
+ * Added action RefreshBrowsersHaml for haml / sass support
5
+
2
6
  === 0.0.1 / 2009-03-03
3
7
 
4
8
  * Initial release
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{bind}
5
- s.version = "0.0.2"
5
+ s.version = "0.0.5"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["TJ Holowaychuk"]
@@ -5,5 +5,5 @@ require File.dirname(__FILE__) + '/../lib/bind'
5
5
 
6
6
  style = File.dirname(__FILE__) + '/style.css'
7
7
  action = lambda { |file| puts "modified #{file}" }
8
- listener = Bind::Listener.new :event => :change, :files => [style], :interval => 1, :action => action, :timeout => 10, :log => $stdout
8
+ listener = Bind::Listener.new :event => :change, :files => [style], :interval => 1, :action => action, :timeout => 10, :debug => $stdout
9
9
  listener.run!
@@ -6,5 +6,5 @@ require File.dirname(__FILE__) + '/../lib/bind'
6
6
  html = File.expand_path(File.dirname(__FILE__) + '/demo.html')
7
7
  style = File.dirname(__FILE__) + '/style.css'
8
8
  action = Bind::Actions::RefreshBrowsers.new html, 'Safari', 'Firefox'
9
- listener = Bind::Listener.new :event => :change, :files => [style], :interval => 1, :action => action, :timeout => 60, :log => $stdout
9
+ listener = Bind::Listener.new :event => :change, :files => [style], :interval => 1, :action => action, :timeout => 60, :debug => $stdout
10
10
  listener.run!
@@ -2,5 +2,6 @@
2
2
  module Bind
3
3
  module Actions
4
4
  autoload :RefreshBrowsers, 'bind/actions/refresh_browsers'
5
+ autoload :RefreshBrowsersHaml, 'bind/actions/refresh_browsers_haml'
5
6
  end
6
7
  end
@@ -1,7 +1,7 @@
1
1
 
2
2
  module Bind
3
3
  module VERSION #:nodoc:
4
- MAJOR, MINOR, TINY = 0, 0, 2
4
+ MAJOR, MINOR, TINY = 0, 0, 5
5
5
  STRING = [MAJOR, MINOR, TINY].join '.'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: visionmedia-bind
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - TJ Holowaychuk