fssm 0.1.0 → 0.1.1

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.
Files changed (4) hide show
  1. data/VERSION.yml +1 -1
  2. data/fssm.gemspec +4 -4
  3. data/lib/fssm/support.rb +1 -1
  4. metadata +57 -57
@@ -1,5 +1,5 @@
1
1
  ---
2
+ :patch: 1
2
3
  :major: 0
3
4
  :minor: 1
4
- :patch: 0
5
5
  :build:
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{fssm}
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Travis Tilley"]
12
- s.date = %q{2009-12-13}
12
+ s.date = %q{2009-12-25}
13
13
  s.description = %q{file system state monitor}
14
14
  s.email = %q{ttilley@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -56,8 +56,8 @@ Gem::Specification.new do |s|
56
56
  s.summary = %q{file system state monitor}
57
57
  s.test_files = [
58
58
  "spec/path_spec.rb",
59
- "spec/spec_helper.rb",
60
- "spec/root/file.rb"
59
+ "spec/root/file.rb",
60
+ "spec/spec_helper.rb"
61
61
  ]
62
62
 
63
63
  if s.respond_to? :specification_version then
@@ -6,7 +6,7 @@ module FSSM::Support
6
6
  @@backend ||= case
7
7
  when mac? && !jruby? && carbon_core?
8
8
  'FSEvents'
9
- when linux? && rb_inotify?
9
+ when linux? && !jruby? && rb_inotify?
10
10
  'Inotify'
11
11
  else
12
12
  'Polling'
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fssm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
- - Travis Tilley
7
+ - Travis Tilley
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-12-13 00:00:00 -05:00
12
+ date: 2009-12-25 00:00:00 -05:00
13
13
  default_executable:
14
14
  dependencies:
15
- - !ruby/object:Gem::Dependency
16
- name: rspec
17
- type: :development
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
20
- requirements:
21
- - - ">="
22
- - !ruby/object:Gem::Version
23
- version: "0"
24
- version:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rspec
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
25
25
  description: file system state monitor
26
26
  email: ttilley@gmail.com
27
27
  executables: []
@@ -29,60 +29,60 @@ executables: []
29
29
  extensions: []
30
30
 
31
31
  extra_rdoc_files:
32
- - LICENSE
33
- - README.markdown
32
+ - LICENSE
33
+ - README.markdown
34
34
  files:
35
- - .document
36
- - .gitignore
37
- - LICENSE
38
- - README.markdown
39
- - Rakefile
40
- - VERSION.yml
41
- - example.rb
42
- - fssm.gemspec
43
- - lib/fssm.rb
44
- - lib/fssm/backends/fsevents.rb
45
- - lib/fssm/backends/inotify.rb
46
- - lib/fssm/backends/polling.rb
47
- - lib/fssm/backends/rubycocoa/fsevents.rb
48
- - lib/fssm/monitor.rb
49
- - lib/fssm/path.rb
50
- - lib/fssm/pathname.rb
51
- - lib/fssm/state.rb
52
- - lib/fssm/support.rb
53
- - lib/fssm/tree.rb
54
- - profile/prof-cache.rb
55
- - profile/prof-fssm-pathname.html
56
- - profile/prof-pathname.rb
57
- - profile/prof-plain-pathname.html
58
- - profile/prof.html
59
- - spec/path_spec.rb
60
- - spec/root/duck/quack.txt
61
- - spec/root/file.css
62
- - spec/root/file.rb
63
- - spec/root/file.yml
64
- - spec/root/moo/cow.txt
65
- - spec/spec_helper.rb
35
+ - .document
36
+ - .gitignore
37
+ - LICENSE
38
+ - README.markdown
39
+ - Rakefile
40
+ - VERSION.yml
41
+ - example.rb
42
+ - fssm.gemspec
43
+ - lib/fssm.rb
44
+ - lib/fssm/backends/fsevents.rb
45
+ - lib/fssm/backends/inotify.rb
46
+ - lib/fssm/backends/polling.rb
47
+ - lib/fssm/backends/rubycocoa/fsevents.rb
48
+ - lib/fssm/monitor.rb
49
+ - lib/fssm/path.rb
50
+ - lib/fssm/pathname.rb
51
+ - lib/fssm/state.rb
52
+ - lib/fssm/support.rb
53
+ - lib/fssm/tree.rb
54
+ - profile/prof-cache.rb
55
+ - profile/prof-fssm-pathname.html
56
+ - profile/prof-pathname.rb
57
+ - profile/prof-plain-pathname.html
58
+ - profile/prof.html
59
+ - spec/path_spec.rb
60
+ - spec/root/duck/quack.txt
61
+ - spec/root/file.css
62
+ - spec/root/file.rb
63
+ - spec/root/file.yml
64
+ - spec/root/moo/cow.txt
65
+ - spec/spec_helper.rb
66
66
  has_rdoc: true
67
67
  homepage: http://github.com/ttilley/fssm
68
68
  licenses: []
69
69
 
70
70
  post_install_message:
71
71
  rdoc_options:
72
- - --charset=UTF-8
72
+ - --charset=UTF-8
73
73
  require_paths:
74
- - lib
74
+ - lib
75
75
  required_ruby_version: !ruby/object:Gem::Requirement
76
76
  requirements:
77
- - - ">="
78
- - !ruby/object:Gem::Version
79
- version: "0"
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ version: "0"
80
80
  version:
81
81
  required_rubygems_version: !ruby/object:Gem::Requirement
82
82
  requirements:
83
- - - ">="
84
- - !ruby/object:Gem::Version
85
- version: "0"
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: "0"
86
86
  version:
87
87
  requirements: []
88
88
 
@@ -92,6 +92,6 @@ signing_key:
92
92
  specification_version: 3
93
93
  summary: file system state monitor
94
94
  test_files:
95
- - spec/path_spec.rb
96
- - spec/spec_helper.rb
97
- - spec/root/file.rb
95
+ - spec/path_spec.rb
96
+ - spec/root/file.rb
97
+ - spec/spec_helper.rb