spork-local_process 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES CHANGED
@@ -1,3 +1,6 @@
1
+ == 0.0.3 - 2011/09/25
2
+ * show filter properly on Ruby 1.9
3
+
1
4
  == 0.0.2 - 2011/09/25
2
5
  * allow to specify example name like with -e from command line by entering something like this:
3
6
  - spec/ "part of example name"
@@ -14,7 +14,8 @@ class Spork::TestFramework::RSpec < Spork::TestFramework
14
14
  end
15
15
 
16
16
  def options_str options, additional_options=nil
17
- str = options.to_s.gsub("\\", "/")
17
+ str = options.is_a?(Array) ? options.join(" ") : options
18
+ str.gsub!("\\", "/")
18
19
  str << " \"#{additional_options}\"" if additional_options
19
20
  str
20
21
  end
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "spork-local_process"
6
- s.version = "0.0.2"
6
+ s.version = "0.0.3"
7
7
  s.authors = ["Jarmo Pertman"]
8
8
  s.email = ["jarmo.p@gmail.com"]
9
9
  s.homepage = "https://github.com/jarmo/spork-local_process"
metadata CHANGED
@@ -1,50 +1,35 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: spork-local_process
3
- version: !ruby/object:Gem::Version
4
- hash: 27
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
5
  prerelease:
6
- segments:
7
- - 0
8
- - 0
9
- - 2
10
- version: 0.0.2
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Jarmo Pertman
14
9
  autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
-
18
- date: 2011-09-25 00:00:00 Z
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
12
+ date: 2011-09-25 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
21
15
  name: spork
22
- prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
16
+ requirement: &18847068 !ruby/object:Gem::Requirement
24
17
  none: false
25
- requirements:
18
+ requirements:
26
19
  - - ~>
27
- - !ruby/object:Gem::Version
28
- hash: 15424151
29
- segments:
30
- - 0
31
- - 9
32
- - 0
33
- - rc
34
- - 9
20
+ - !ruby/object:Gem::Version
35
21
  version: 0.9.0.rc9
36
22
  type: :runtime
37
- version_requirements: *id001
38
- description: Run your code in a local process with Spork again and again without reloading the whole environment each time.
39
- email:
23
+ prerelease: false
24
+ version_requirements: *18847068
25
+ description: Run your code in a local process with Spork again and again without reloading
26
+ the whole environment each time.
27
+ email:
40
28
  - jarmo.p@gmail.com
41
29
  executables: []
42
-
43
30
  extensions: []
44
-
45
31
  extra_rdoc_files: []
46
-
47
- files:
32
+ files:
48
33
  - .gitignore
49
34
  - CHANGES
50
35
  - Gemfile
@@ -58,36 +43,27 @@ files:
58
43
  - spork-local_process.gemspec
59
44
  homepage: https://github.com/jarmo/spork-local_process
60
45
  licenses: []
61
-
62
46
  post_install_message:
63
47
  rdoc_options: []
64
-
65
- require_paths:
48
+ require_paths:
66
49
  - lib
67
- required_ruby_version: !ruby/object:Gem::Requirement
50
+ required_ruby_version: !ruby/object:Gem::Requirement
68
51
  none: false
69
- requirements:
70
- - - ">="
71
- - !ruby/object:Gem::Version
72
- hash: 3
73
- segments:
74
- - 0
75
- version: "0"
76
- required_rubygems_version: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ! '>='
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ required_rubygems_version: !ruby/object:Gem::Requirement
77
57
  none: false
78
- requirements:
79
- - - ">="
80
- - !ruby/object:Gem::Version
81
- hash: 3
82
- segments:
83
- - 0
84
- version: "0"
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
85
62
  requirements: []
86
-
87
63
  rubyforge_project:
88
- rubygems_version: 1.8.4
64
+ rubygems_version: 1.8.5
89
65
  signing_key:
90
66
  specification_version: 3
91
- summary: Run your code in a local process with Spork again and again without reloading the whole environment each time.
67
+ summary: Run your code in a local process with Spork again and again without reloading
68
+ the whole environment each time.
92
69
  test_files: []
93
-