bind 0.2.6 → 0.2.7

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.2.7 / 2009-10-10
3
+
4
+ * Removed gem namespace (thanks github...)
5
+
2
6
  === 0.2.6 / 2009-03-25
3
7
 
4
8
  * Updated exec doc to match recent changes
data/Manifest CHANGED
@@ -1,3 +1,8 @@
1
+ History.rdoc
2
+ Manifest
3
+ README.rdoc
4
+ Rakefile
5
+ Todo.rdoc
1
6
  bin/rbind
2
7
  bind.gemspec
3
8
  examples/demo.html
@@ -5,16 +10,12 @@ examples/globbing.rb
5
10
  examples/log_changes.rb
6
11
  examples/refresh_browsers.rb
7
12
  examples/style.css
8
- History.rdoc
9
- lib/bind/actions/refresh_browsers.rb
13
+ lib/bind.rb
10
14
  lib/bind/actions.rb
15
+ lib/bind/actions/refresh_browsers.rb
11
16
  lib/bind/command_helpers.rb
12
17
  lib/bind/listener.rb
13
18
  lib/bind/version.rb
14
- lib/bind.rb
15
- Manifest
16
- Rakefile
17
- README.rdoc
18
19
  spec/command_helper_spec.rb
19
20
  spec/fixtures/assets/bar.css
20
21
  spec/fixtures/assets/foo.css
@@ -28,4 +29,3 @@ tasks/docs.rake
28
29
  tasks/gemspec.rake
29
30
  tasks/release.rake
30
31
  tasks/spec.rake
31
- Todo.rdoc
@@ -5,6 +5,11 @@ Bind actions to various file system events, helping aid in
5
5
  automation of tasks such as refreshing browser(s) when you
6
6
  update a css / sass / js file.
7
7
 
8
+ == Installation
9
+
10
+ Install [Gemcutter](http://gemcutter.org) and execute:
11
+ $ sudo gem install bind
12
+
8
13
  == Executable
9
14
 
10
15
  The 'bind' executable allows you to perform arbitrary actions
data/Rakefile CHANGED
@@ -11,7 +11,7 @@ Echoe.new "bind", Bind::VERSION do |p|
11
11
  p.summary = "bind actions to filesystem events"
12
12
  p.url = "http://github.com/visionmedia/bind"
13
13
  p.runtime_dependencies = []
14
- p.runtime_dependencies << 'visionmedia-commander >=3.1.6'
14
+ p.runtime_dependencies << 'commander >=3.1.6'
15
15
  end
16
16
 
17
17
  Dir['tasks/**/*.rake'].sort.each { |lib| load lib }
@@ -2,35 +2,34 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{bind}
5
- s.version = "0.2.6"
5
+ s.version = "0.2.7"
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-25}
9
+ s.date = %q{2009-10-10}
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}
13
13
  s.executables = ["rbind"]
14
- s.extra_rdoc_files = ["bin/rbind", "bind.gemspec", "lib/bind/actions/refresh_browsers.rb", "lib/bind/actions.rb", "lib/bind/command_helpers.rb", "lib/bind/listener.rb", "lib/bind/version.rb", "lib/bind.rb", "README.rdoc", "tasks/docs.rake", "tasks/gemspec.rake", "tasks/release.rake", "tasks/spec.rake"]
15
- s.files = ["bin/rbind", "bind.gemspec", "examples/demo.html", "examples/globbing.rb", "examples/log_changes.rb", "examples/refresh_browsers.rb", "examples/style.css", "History.rdoc", "lib/bind/actions/refresh_browsers.rb", "lib/bind/actions.rb", "lib/bind/command_helpers.rb", "lib/bind/listener.rb", "lib/bind/version.rb", "lib/bind.rb", "Manifest", "Rakefile", "README.rdoc", "spec/command_helper_spec.rb", "spec/fixtures/assets/bar.css", "spec/fixtures/assets/foo.css", "spec/fixtures/assets/jquery.js", "spec/fixtures/assets/js/app.js", "spec/fixtures/assets/js/test.js", "spec/fixtures/style.css", "spec/listener_spec.rb", "spec/spec_helper.rb", "tasks/docs.rake", "tasks/gemspec.rake", "tasks/release.rake", "tasks/spec.rake", "Todo.rdoc"]
16
- s.has_rdoc = true
14
+ s.extra_rdoc_files = ["README.rdoc", "bin/rbind", "bind.gemspec", "lib/bind.rb", "lib/bind/actions.rb", "lib/bind/actions/refresh_browsers.rb", "lib/bind/command_helpers.rb", "lib/bind/listener.rb", "lib/bind/version.rb", "tasks/docs.rake", "tasks/gemspec.rake", "tasks/release.rake", "tasks/spec.rake"]
15
+ s.files = ["History.rdoc", "Manifest", "README.rdoc", "Rakefile", "Todo.rdoc", "bin/rbind", "bind.gemspec", "examples/demo.html", "examples/globbing.rb", "examples/log_changes.rb", "examples/refresh_browsers.rb", "examples/style.css", "lib/bind.rb", "lib/bind/actions.rb", "lib/bind/actions/refresh_browsers.rb", "lib/bind/command_helpers.rb", "lib/bind/listener.rb", "lib/bind/version.rb", "spec/command_helper_spec.rb", "spec/fixtures/assets/bar.css", "spec/fixtures/assets/foo.css", "spec/fixtures/assets/jquery.js", "spec/fixtures/assets/js/app.js", "spec/fixtures/assets/js/test.js", "spec/fixtures/style.css", "spec/listener_spec.rb", "spec/spec_helper.rb", "tasks/docs.rake", "tasks/gemspec.rake", "tasks/release.rake", "tasks/spec.rake"]
17
16
  s.homepage = %q{http://github.com/visionmedia/bind}
18
17
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Bind", "--main", "README.rdoc"]
19
18
  s.require_paths = ["lib"]
20
19
  s.rubyforge_project = %q{bind}
21
- s.rubygems_version = %q{1.3.1}
20
+ s.rubygems_version = %q{1.3.5}
22
21
  s.summary = %q{bind actions to filesystem events}
23
22
 
24
23
  if s.respond_to? :specification_version then
25
24
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
26
- s.specification_version = 2
25
+ s.specification_version = 3
27
26
 
28
27
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
29
- s.add_runtime_dependency(%q<visionmedia-commander>, [">= 3.1.6"])
28
+ s.add_runtime_dependency(%q<commander>, [">= 3.1.6"])
30
29
  else
31
- s.add_dependency(%q<visionmedia-commander>, [">= 3.1.6"])
30
+ s.add_dependency(%q<commander>, [">= 3.1.6"])
32
31
  end
33
32
  else
34
- s.add_dependency(%q<visionmedia-commander>, [">= 3.1.6"])
33
+ s.add_dependency(%q<commander>, [">= 3.1.6"])
35
34
  end
36
35
  end
@@ -1,4 +1,4 @@
1
1
 
2
2
  module Bind
3
- VERSION = '0.2.6'
3
+ VERSION = '0.2.7'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bind
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - TJ Holowaychuk
@@ -9,11 +9,11 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-03-25 00:00:00 -07:00
12
+ date: 2009-10-10 00:00:00 -07:00
13
13
  default_executable: rbind
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
- name: visionmedia-commander
16
+ name: commander
17
17
  type: :runtime
18
18
  version_requirement:
19
19
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,20 +29,25 @@ executables:
29
29
  extensions: []
30
30
 
31
31
  extra_rdoc_files:
32
+ - README.rdoc
32
33
  - bin/rbind
33
34
  - bind.gemspec
34
- - lib/bind/actions/refresh_browsers.rb
35
+ - lib/bind.rb
35
36
  - lib/bind/actions.rb
37
+ - lib/bind/actions/refresh_browsers.rb
36
38
  - lib/bind/command_helpers.rb
37
39
  - lib/bind/listener.rb
38
40
  - lib/bind/version.rb
39
- - lib/bind.rb
40
- - README.rdoc
41
41
  - tasks/docs.rake
42
42
  - tasks/gemspec.rake
43
43
  - tasks/release.rake
44
44
  - tasks/spec.rake
45
45
  files:
46
+ - History.rdoc
47
+ - Manifest
48
+ - README.rdoc
49
+ - Rakefile
50
+ - Todo.rdoc
46
51
  - bin/rbind
47
52
  - bind.gemspec
48
53
  - examples/demo.html
@@ -50,16 +55,12 @@ files:
50
55
  - examples/log_changes.rb
51
56
  - examples/refresh_browsers.rb
52
57
  - examples/style.css
53
- - History.rdoc
54
- - lib/bind/actions/refresh_browsers.rb
58
+ - lib/bind.rb
55
59
  - lib/bind/actions.rb
60
+ - lib/bind/actions/refresh_browsers.rb
56
61
  - lib/bind/command_helpers.rb
57
62
  - lib/bind/listener.rb
58
63
  - lib/bind/version.rb
59
- - lib/bind.rb
60
- - Manifest
61
- - Rakefile
62
- - README.rdoc
63
64
  - spec/command_helper_spec.rb
64
65
  - spec/fixtures/assets/bar.css
65
66
  - spec/fixtures/assets/foo.css
@@ -73,7 +74,6 @@ files:
73
74
  - tasks/gemspec.rake
74
75
  - tasks/release.rake
75
76
  - tasks/spec.rake
76
- - Todo.rdoc
77
77
  has_rdoc: true
78
78
  homepage: http://github.com/visionmedia/bind
79
79
  licenses: []
@@ -105,7 +105,7 @@ requirements: []
105
105
  rubyforge_project: bind
106
106
  rubygems_version: 1.3.5
107
107
  signing_key:
108
- specification_version: 2
108
+ specification_version: 3
109
109
  summary: bind actions to filesystem events
110
110
  test_files: []
111
111