guard-xctool-test 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +0 -1
- data/README.md +4 -0
- data/lib/guard/xctool-test/templates/Guardfile +3 -0
- data/lib/guard/xctool-test/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 77032e3f333aedc1dbf662f12956201b63e9a5e7
|
4
|
+
data.tar.gz: d325a56847eae27958addc8c73eac3c897dad256
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b54dbc41a643b7bf318647dbe8389737ed76ce0d3086373b467313c8e4d9eca9962686be1316adbc9c7295317002b085134969a9567678c7496cd590089d714a
|
7
|
+
data.tar.gz: fc0f143c5f894db6c656ece17be09cbccbeb1cd3ede5b47ce9a65a8e55779c3a24ed61eccc0bff5a1e3ebf4219dfea93d29a85a96e5d59364caba4ec31a9eaf6
|
data/.travis.yml
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
language: objective-c
|
2
2
|
env:
|
3
3
|
- RVM_RUBY_VERSION=1.9.3 NOEXEC_DISABLE=1 RUBY_VERSION_SPECIFIC='sudo ln -s /usr/bin/llvm-gcc-4.2 /usr/bin/gcc-4.2 && curl http://curl.haxx.se/ca/cacert.pem -o /usr/local/share/cacert.pem' SSL_CERT_FILE=/usr/local/share/cacert.pem
|
4
|
-
- RVM_RUBY_VERSION=2.0.0 NOEXEC_DISABLE=1 RUBY_VERSION_SPECIFIC='sudo ln -s /usr/bin/llvm-gcc-4.2 /usr/bin/gcc-4.2 && curl http://curl.haxx.se/ca/cacert.pem -o /usr/local/share/cacert.pem' SSL_CERT_FILE=/usr/local/share/cacert.pem
|
5
4
|
before_install:
|
6
5
|
- source ~/.rvm/scripts/rvm && rvm use $RVM_RUBY_VERSION
|
7
6
|
- sudo chown -R $USER /usr/local
|
data/README.md
CHANGED
@@ -30,6 +30,10 @@ guard 'xctool-test' do
|
|
30
30
|
end
|
31
31
|
```
|
32
32
|
|
33
|
+
## How to Use
|
34
|
+
|
35
|
+
Make sure you installed xctool, and add appropriate ``.xctool-args`` to your project root before using ``guard-xctool-test``. Alternatively you may specify appropriate ``:cli`` option.
|
36
|
+
|
33
37
|
## Options
|
34
38
|
|
35
39
|
By default, xctool-test find the folder for projects and find a target that look like test.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guard-xctool-test
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Francis Chong
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-05-
|
11
|
+
date: 2013-05-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: guard
|
@@ -97,6 +97,7 @@ files:
|
|
97
97
|
- Rakefile
|
98
98
|
- guard-xctool-test.gemspec
|
99
99
|
- lib/guard/xctool-test.rb
|
100
|
+
- lib/guard/xctool-test/templates/Guardfile
|
100
101
|
- lib/guard/xctool-test/version.rb
|
101
102
|
- lib/guard/xctool_helper.rb
|
102
103
|
- spec/spec_helper.rb
|
@@ -122,7 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
122
123
|
version: '0'
|
123
124
|
requirements: []
|
124
125
|
rubyforge_project:
|
125
|
-
rubygems_version: 2.0.
|
126
|
+
rubygems_version: 2.0.3
|
126
127
|
signing_key:
|
127
128
|
specification_version: 4
|
128
129
|
summary: Xctool test guard allows you to automically & intelligently aunch specs when
|