cocoapods-keys 1.2.1 → 1.3.0
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 +4 -4
- data/.rubocop.yml +10 -0
- data/.rubocop_cocoapods.yml +116 -0
- data/.rubocop_todo.yml +39 -0
- data/CHANGELOG.md +5 -1
- data/Gemfile.lock +19 -1
- data/README.md +22 -19
- data/Rakefile +3 -2
- data/SWIFT_PROJECTS.md +31 -0
- data/cocoapods_keys.gemspec +1 -0
- data/lib/cocoapods_keys.rb +1 -1
- data/lib/cocoapods_plugin.rb +1 -1
- data/lib/key_master.rb +20 -14
- data/lib/keyring.rb +6 -7
- data/lib/keyring_liberator.rb +13 -15
- data/lib/name_whisperer.rb +28 -32
- data/lib/plugin.rb +44 -30
- data/lib/pod/command/keys.rb +1 -3
- data/lib/pod/command/keys/get.rb +9 -12
- data/lib/pod/command/keys/list.rb +21 -24
- data/lib/pod/command/keys/rm.rb +18 -19
- data/lib/pod/command/keys/set.rb +8 -10
- data/lib/preinstaller.rb +15 -13
- data/spec/functional_spec.rb +7 -16
- data/spec/key_master_spec.rb +4 -36
- data/spec/keyring_liberator_spec.rb +11 -12
- data/spec/plugin_spec.rb +193 -1
- data/spec/spec_helper.rb +5 -4
- metadata +20 -2
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(
|
5
|
+
system('which -s clang')
|
6
6
|
end
|
7
7
|
|
8
8
|
def fixture(name)
|
9
|
-
File.join(__dir__,
|
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
|
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.
|
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-
|
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
|