guard-frank 0.0.2 → 0.0.3
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.
- data/README.md +3 -3
- data/lib/guard/frank/version.rb +1 -1
- data/lib/guard/frank.rb +1 -3
- metadata +4 -4
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Guard::Frank
|
|
2
2
|
|
|
3
|
-
Guard gem for [Frank-Cucumber](http://www.testingwithfrank.com/).
|
|
4
|
-
Guard::Frank automatically run your frank-cucumber features for iOS.
|
|
3
|
+
Guard gem for [Frank-Cucumber](http://www.testingwithfrank.com/).
|
|
4
|
+
Guard::Frank automatically run your frank-cucumber features for iOS.
|
|
5
5
|
|
|
6
6
|
## Installation
|
|
7
7
|
|
|
@@ -9,7 +9,7 @@ Guard::Frank automatically run your frank-cucumber features for iOS.
|
|
|
9
9
|
|
|
10
10
|
## Usage
|
|
11
11
|
|
|
12
|
-
Add support of the frank-cucumber to your project as [described](http://www.testingwithfrank.com/installing.html).
|
|
12
|
+
Add support of the frank-cucumber to your project as [described](http://www.testingwithfrank.com/installing.html).
|
|
13
13
|
Then go to the Xcode settings and setup Derived Data as Relative.
|
|
14
14
|
|
|
15
15
|
.
|
data/lib/guard/frank/version.rb
CHANGED
data/lib/guard/frank.rb
CHANGED
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
require 'guard'
|
|
2
2
|
require 'guard/guard'
|
|
3
3
|
require 'guard/notifier'
|
|
4
|
-
|
|
4
|
+
require 'guard/frank/runner'
|
|
5
5
|
|
|
6
6
|
module Guard
|
|
7
7
|
class Frank < Guard
|
|
8
8
|
|
|
9
|
-
autoload :Runner, 'guard/frank/runner'
|
|
10
|
-
|
|
11
9
|
# Initialize a Guard.
|
|
12
10
|
# @param [Array<Guard::Watcher>] watchers the Guard file watchers
|
|
13
11
|
# @param [Hash] options the custom Guard options
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: guard-frank
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.0.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Alex Denisov
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2012-05-
|
|
18
|
+
date: 2012-05-16 00:00:00 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
name: guard
|