guard-xctool-test 0.1.1 → 0.1.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,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9d2a4b8aaf6af6e278edd38769a5c33bbad8d27a
4
- data.tar.gz: 538b1402ec0aed2452b6ab6511b236ceed4c34d9
3
+ metadata.gz: 77032e3f333aedc1dbf662f12956201b63e9a5e7
4
+ data.tar.gz: d325a56847eae27958addc8c73eac3c897dad256
5
5
  SHA512:
6
- metadata.gz: fc06829513472da72305b1800bfde6c8a41a4bec9c82c89f671ac132c9504fe5c50c1df402158aad042d9598c585d32f7fba4839cc5c16e1425bee59eb087bc4
7
- data.tar.gz: 793994fd90051680e386ee32155ca9fe15cce00fa3a81d6a24661c7a886d0b7e4abe612df176fdb13418d9c44e736894918294901af282a78ab45bdc6c798584
6
+ metadata.gz: b54dbc41a643b7bf318647dbe8389737ed76ce0d3086373b467313c8e4d9eca9962686be1316adbc9c7295317002b085134969a9567678c7496cd590089d714a
7
+ data.tar.gz: fc0f143c5f894db6c656ece17be09cbccbeb1cd3ede5b47ce9a65a8e55779c3a24ed61eccc0bff5a1e3ebf4219dfea93d29a85a96e5d59364caba4ec31a9eaf6
@@ -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.
@@ -0,0 +1,3 @@
1
+ guard 'xctool-test' do
2
+ watch(%r{(.+)\.(m|mm)$})
3
+ end
@@ -1,5 +1,5 @@
1
1
  module Guard
2
2
  module XctoolTestVersion
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
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.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-15 00:00:00.000000000 Z
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.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