dev 1.0.57 → 1.0.58

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 (3) hide show
  1. data/lib/dev/Project.rb +1 -0
  2. data/lib/dev/Scm.rb +4 -1
  3. metadata +1 -1
@@ -201,6 +201,7 @@ class Project < Hash
201
201
  call=Dev::SystemCall.new('svn diff') if File.exists?(".svn")
202
202
 
203
203
  unless call.nil? || call.output.length==0
204
+ puts_debug call.output
204
205
  return true # differences detected
205
206
  else
206
207
  return false # no differences
@@ -30,7 +30,10 @@ class Scm
30
30
 
31
31
  def add_file_glob(glob)
32
32
  Dir.glob(glob).each { |f|
33
- if(!f.include?("/obj/"))
33
+ if(!f.include?("/obj/") &&
34
+ !f.include?("/bin/") &&
35
+ f.index("obj/") != 0 &&
36
+ f.index("bin/") != 0 )
34
37
  add_file(f)
35
38
  end
36
39
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dev
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.57
4
+ version: 1.0.58
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: