overapp 0.4.1 → 0.4.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.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YzRiNTg3MTQ3ODAyZjcwMzBlYTQ3NzgzMGIzNTNiZjgxNzFlMmQzMA==
4
+ YjY4MjM5OGZmY2MwN2RhYWJhZjU4YzY5ZGZmNDkwYWEwNDkwYWJkNA==
5
5
  data.tar.gz: !binary |-
6
- OTg5MGJkMTAxMWE5YTk5ZWZhMWQxOTk5ZTljMjAzYzU3MzBkYTNlOA==
6
+ NGZhYjcwNWEzYTg2MDBkZTY2OWRiNTNjMTE4NWE5NjEzYjZkOTNmNw==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- Njg2ZDJkMGY2YjM5ZjNiZDY5YzA2MTE2YzhiYjE4MzI2NmI4MDE2YjQ2M2Uz
10
- Mzc3OWEzMTQzMTZmNTAyNWIzNDkzYzkxMGNlNDNkNGVjZTJmNWVjMDMwMDIw
11
- OTc1NTZmMmI3YWY3OGRjMjYwMjA2ODMwMDk3Y2UwNzUwOTgwZWI=
9
+ ZjIzN2MwZWJiNzZiNGE3NWU1MGJkOGJiZWM3YmU1YTU0NDUxNGFlZDhmNGEz
10
+ OThjNzc3YWNjYzFiMWVjMDA3MDk1NTI5ZmE0MmRkMWQwMDMwZWIzMmViM2I5
11
+ NTZhOTg2Y2EwODlhMDdmNWI5MjJkMWQ5MGQyNjBlODA2NTY1Y2M=
12
12
  data.tar.gz: !binary |-
13
- MTIzZTZmMGRmNDFiMWI1NDJkY2E1NzI3ZWQ4OTVhZTkyNmM0OWI5NmJiZWM4
14
- ZjQ3MDZjMjMxY2IyM2U4Y2U5ZjNmM2IxNzNkYjE1MmY1MWM0MjgyYWIyNWQ2
15
- NTg5Y2QwZTc5OWM4YjUzM2ExMmFmZGNhMTU5NTRjYTVmOWRlMTY=
13
+ YWZlNTg4ZmYyZmM3MWYwMjg1YmIwMWMyYWE4MjkzMmJiZWNhNDI3OGM0YmJl
14
+ NTM4N2M3ZTM3NmIzNjNmM2ViMjhmOWM3MDA5YzUzZDI2Mjk4MjY3MDUzZjc5
15
+ YTE0NjUzYjU1ZDBjMWU0NjI2OTdhOWFhZTNmNzBlODA0NDU0OGI=
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.1
1
+ 0.4.2
@@ -22,7 +22,6 @@ module Overapp
22
22
 
23
23
  def load!
24
24
  c = self
25
- puts body
26
25
  eval(body)
27
26
  end
28
27
  end
@@ -3,9 +3,9 @@ module Overapp
3
3
  def dir_files(dir)
4
4
  res = Dir["#{dir}/**/*"] + Dir["#{dir}/**/.*"]
5
5
  res = res - [".","..",".git"]
6
- rej = res.select { |x| FileTest.file?(x) && File.binary?(x) && !(x =~ /\.txt/) }
7
- raise rej.inspect unless rej.empty?
8
- res
6
+ res.reject { |x| FileTest.file?(x) && File.binary?(x) && !(x =~ /\.txt/) }
7
+ #raise rej.inspect unless rej.empty?
8
+ #res - rej
9
9
  end
10
10
 
11
11
  def with_local_path(overapp_path,&b)
data/overapp.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "overapp"
8
- s.version = "0.4.1"
8
+ s.version = "0.4.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Mike Harris"]
12
- s.date = "2013-11-15"
12
+ s.date = "2013-11-16"
13
13
  s.description = "overapp"
14
14
  s.email = "mharris717@gmail.com"
15
15
  s.executables = ["overapp"]
@@ -24,6 +24,6 @@ describe 'FromCommand' do
24
24
 
25
25
  it 'runs' do
26
26
  project.write_to! output_dir
27
- Dir["#{output_dir}/**/*.*"].should == ['abc.txt','place.txt'].map { |x| "#{output_dir}/#{x}" }
27
+ Dir["#{output_dir}/**/*.*"].sort.should == ['abc.txt','place.txt'].sort.map { |x| "#{output_dir}/#{x}" }
28
28
  end
29
29
  end
data/spec/spec_helper.rb CHANGED
@@ -40,7 +40,7 @@ Spork.prefork do
40
40
 
41
41
  RSpec.configure do |config|
42
42
  #config.filter_run :focus => true
43
- config.fail_fast = true
43
+ config.fail_fast = false
44
44
 
45
45
  repo_dirs = %w(repo)
46
46
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: overapp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Harris
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-15 00:00:00.000000000 Z
11
+ date: 2013-11-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mharris_ext