observr 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,6 @@
1
1
  require 'pathname'
2
2
  require 'rbconfig'
3
+ require 'observr/version'
3
4
 
4
5
  # Agile development tool that monitors a directory recursively, and triggers a
5
6
  # user defined action whenever an observed file is modified. Its most typical
@@ -14,8 +15,6 @@ require 'rbconfig'
14
15
  #
15
16
  $LOAD_PATH.unshift(File.dirname(__FILE__))
16
17
  module Observr
17
- VERSION = '1.0.2'
18
-
19
18
  begin
20
19
  require 'fsevent'
21
20
  HAVE_FSE = true
@@ -0,0 +1,3 @@
1
+ module Observr
2
+ VERSION = '1.0.3'
3
+ end
@@ -1,4 +1,4 @@
1
- require './lib/observr'
1
+ require File.expand_path('../lib/observr/version', __FILE__)
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "observr"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: observr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -83,6 +83,7 @@ files:
83
83
  - lib/observr/event_handlers/portable.rb
84
84
  - lib/observr/event_handlers/unix.rb
85
85
  - lib/observr/script.rb
86
+ - lib/observr/version.rb
86
87
  - observr.gemspec
87
88
  - specs.watchr
88
89
  - test/README