cocoapods-keys 1.2.1 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
data/spec/spec_helper.rb CHANGED
@@ -2,15 +2,16 @@ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
2
2
 
3
3
  def clang_available
4
4
  # uses a shell to ensure we get a reasonable PATH
5
- system("which -s clang")
5
+ system('which -s clang')
6
6
  end
7
7
 
8
8
  def fixture(name)
9
- File.join(__dir__, "fixtures", name)
9
+ File.join(__dir__, 'fixtures', name)
10
10
  end
11
11
 
12
12
  RSpec.configure do |c|
13
13
  # exclude tests requiring clang when it's unavailable
14
- c.filter_run_excluding requires_clang: true unless clang_available
15
- end
14
+ c.filter_run_excluding :requires_clang => true unless clang_available
16
15
 
16
+ c.color = true
17
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-keys
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Orta Therox
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-05-14 00:00:00.000000000 Z
12
+ date: 2015-06-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: osx_keychain
@@ -67,6 +67,20 @@ dependencies:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
69
  version: '0'
70
+ - !ruby/object:Gem::Dependency
71
+ name: rubocop
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: '0'
70
84
  description: A key value store for environment settings in Cocoa Apps.
71
85
  email:
72
86
  - orta.therox@gmail.com
@@ -76,6 +90,9 @@ extensions: []
76
90
  extra_rdoc_files: []
77
91
  files:
78
92
  - ".gitignore"
93
+ - ".rubocop.yml"
94
+ - ".rubocop_cocoapods.yml"
95
+ - ".rubocop_todo.yml"
79
96
  - ".travis.yml"
80
97
  - CHANGELOG.md
81
98
  - Gemfile
@@ -83,6 +100,7 @@ files:
83
100
  - LICENSE.txt
84
101
  - README.md
85
102
  - Rakefile
103
+ - SWIFT_PROJECTS.md
86
104
  - cocoapods_keys.gemspec
87
105
  - lib/cocoapods_keys.rb
88
106
  - lib/cocoapods_plugin.rb