visionmedia-bind 0.2.1 → 0.2.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.
data/History.rdoc CHANGED
@@ -1,4 +1,8 @@
1
1
 
2
+ === 0.2.2 / 2009-03-13
3
+
4
+ * Updated dependency visionmedia-commander >= 3.1.1
5
+
2
6
  === 0.2.1 / 2009-03-09
3
7
 
4
8
  * Removed a #p call
data/Rakefile CHANGED
@@ -10,7 +10,7 @@ Echoe.new("bind", Bind::VERSION) do |p|
10
10
  p.summary = "bind actions to filesystem events"
11
11
  p.url = "http://github.com/visionmedia/bind"
12
12
  p.runtime_dependencies = []
13
- p.runtime_dependencies << 'visionmedia-commander >=2.5.6'
13
+ p.runtime_dependencies << 'visionmedia-commander >=3.1.1'
14
14
  end
15
15
 
16
16
  Dir['tasks/**/*.rake'].sort.each { |lib| load lib }
data/bin/rbind CHANGED
@@ -5,8 +5,8 @@ require 'bind'
5
5
  require 'bind/command_helpers'
6
6
  require 'commander'
7
7
 
8
- program :name, 'Bind'
9
- program :version, Bind::VERSION::STRING
8
+ program :name, 'rbind'
9
+ program :version, Bind::VERSION
10
10
  program :description, 'Bind actions to filesystem events'
11
11
 
12
12
  command :to do |c|
@@ -30,8 +30,8 @@ command :refresh do |c|
30
30
  c.syntax = 'rbind refresh <uri> [options]'
31
31
  c.summary = 'Bind to <uri>, refreshing browsers.'
32
32
  c.description = 'Bind to <uri>, refreshing browsers when the paths you are watching change.'
33
- c.example = 'Bind a few css files for quick editing in multiple browsers', 'bind refresh http://localhost/page --files style.css,reset.css --browsers Safari,Firefox'
34
- c.example = 'Bind local static html (no scheme)', 'bind refresh examples/demo.html -f style.css -b Safari'
33
+ c.example 'Bind a few css files for quick editing in multiple browsers', 'bind refresh http://localhost/page --files style.css,reset.css --browsers Safari,Firefox'
34
+ c.example 'Bind local static html (no scheme)', 'bind refresh examples/demo.html -f style.css -b Safari'
35
35
  c.option '-b', '--browsers BROWSERS', Array, 'List of browsers you wish to refresh. Defaults to Safari'
36
36
  c.option '-p', '--paths PATHS', Array, 'List of files, directories, or globs to bind to'
37
37
  c.when_called do |args, options|
data/bind.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{bind}
5
- s.version = "0.2.1"
5
+ s.version = "0.2.2"
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"]
9
- s.date = %q{2009-03-09}
9
+ s.date = %q{2009-03-13}
10
10
  s.default_executable = %q{rbind}
11
11
  s.description = %q{bind actions to filesystem events}
12
12
  s.email = %q{tj@vision-media.ca}
@@ -26,11 +26,11 @@ Gem::Specification.new do |s|
26
26
  s.specification_version = 2
27
27
 
28
28
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
29
- s.add_runtime_dependency(%q<visionmedia-commander>, [">= 2.5.6"])
29
+ s.add_runtime_dependency(%q<visionmedia-commander>, [">= 3.1.1"])
30
30
  else
31
- s.add_dependency(%q<visionmedia-commander>, [">= 2.5.6"])
31
+ s.add_dependency(%q<visionmedia-commander>, [">= 3.1.1"])
32
32
  end
33
33
  else
34
- s.add_dependency(%q<visionmedia-commander>, [">= 2.5.6"])
34
+ s.add_dependency(%q<visionmedia-commander>, [">= 3.1.1"])
35
35
  end
36
36
  end
data/lib/bind/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
 
2
2
  module Bind
3
- VERSION = '0.2.1'
3
+ VERSION = '0.2.2'
4
4
  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.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - TJ Holowaychuk
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-03-09 00:00:00 -07:00
12
+ date: 2009-03-13 00:00:00 -07:00
13
13
  default_executable: rbind
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -20,7 +20,7 @@ dependencies:
20
20
  requirements:
21
21
  - - ">="
22
22
  - !ruby/object:Gem::Version
23
- version: 2.5.6
23
+ version: 3.1.1
24
24
  version:
25
25
  description: bind actions to filesystem events
26
26
  email: tj@vision-media.ca