cocoapods-browser 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dea7562e021ce37162139b2a05d5a23ee9861e7c
4
- data.tar.gz: 23e8c8368a9337e186191767e52428ef94e8eee1
3
+ metadata.gz: 738d4a98cd781fefe4d0dc494de3443f324d0b12
4
+ data.tar.gz: d419328e93966568b338b63b94232d86db2cec6d
5
5
  SHA512:
6
- metadata.gz: c514613179bcca8cfdb8a8314c3838cbaf8a83ba4332fe8cd8cf3e01e7e0368c0d3acca10162753a5df88a9de6643ddc4818a50466457abddb4908dcbf99079a
7
- data.tar.gz: 77234d619a2c55a3a109ad1b35b8e640573c2a74edd37941a8a332c97830313bfef98918dc1bd3704460619b7953015f4323ef70be841bfe860e8b7e7eb72265
6
+ metadata.gz: ae445103f93ee8cb6ac1b57dfc83cb21cf2df1897b2484319e66c333868554994b485baaaae6eab3d8d2d9c3c71b61db415b64a6b53cbede9486bf2cff3bb9e4
7
+ data.tar.gz: 0b16ff2086e8e886c40cd2ba9b319b9324dc1f1bc4f8e49905c0016f557b14ff146b0a91e7c55e09c2358aedf1c902a3b19300f12b8c356a7953e1ec18dc3e54
data/Gemfile CHANGED
@@ -12,6 +12,7 @@ group :development do
12
12
 
13
13
  if RUBY_VERSION >= '1.9.3'
14
14
  gem 'rubocop'
15
+ gem 'guard-rubocop'
15
16
 
16
17
  gem 'codeclimate-test-reporter', :require => nil
17
18
  # Bug: https://github.com/colszowka/simplecov/issues/281
@@ -0,0 +1,7 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ guard :rubocop do
5
+ watch(%r{.+\.rb$})
6
+ watch(%r{(?:.+/)?\.?rubocop(?:-.+)?\.yml$}) { |m| File.dirname(m[0]) }
7
+ end
@@ -1,5 +1,5 @@
1
1
  module Cocoapods
2
2
  module Browser
3
- VERSION = '0.1.4'
3
+ VERSION = '0.1.5'
4
4
  end
5
5
  end
@@ -7,7 +7,7 @@ module Pod
7
7
  Opens the homepage of a pod in the browser.
8
8
  DESC
9
9
 
10
- self.arguments = [['[NAME]', :optional]]
10
+ self.arguments = [ CLAide::Argument.new(%w(NAME), true) ]
11
11
 
12
12
  def self.options
13
13
  [
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-browser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Toshihiro Morimoto
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-11 00:00:00.000000000 Z
11
+ date: 2014-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -64,6 +64,7 @@ files:
64
64
  - ".rubocop.yml"
65
65
  - ".travis.yml"
66
66
  - Gemfile
67
+ - Guardfile
67
68
  - LICENSE.txt
68
69
  - README.md
69
70
  - Rakefile