visionmedia-bind 0.0.7 → 0.0.8

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.
data/History.rdoc CHANGED
@@ -1,4 +1,8 @@
1
1
 
2
+ === 0.0.8 / 2009-03-03
3
+
4
+ * Fixed typo in RefreshBrowsersHaml
5
+
2
6
  === 0.0.6 / 2009-03-03
3
7
 
4
8
  * Fixed RefreshBrowsersHaml, forgot to add the file to the manifest :)
data/bind.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{bind}
5
- s.version = "0.0.7"
5
+ s.version = "0.0.8"
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"]
@@ -29,11 +29,11 @@ module Bind
29
29
  opts.parse!
30
30
  end
31
31
 
32
- def haml?
32
+ def haml? file
33
33
  file.path.include? '.haml'
34
34
  end
35
35
 
36
- def sass?
36
+ def sass? file
37
37
  file.path.include? '.sass'
38
38
  end
39
39
 
data/lib/bind/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
 
2
2
  module Bind
3
3
  module VERSION #:nodoc:
4
- MAJOR, MINOR, TINY = 0, 0, 7
4
+ MAJOR, MINOR, TINY = 0, 0, 8
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.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - TJ Holowaychuk