cupertino 1.3.0 → 1.3.1

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: 564497e96b96972b59f3aa641eb7ba834e4fd4ce
4
- data.tar.gz: e130a2842a126f0a3a142beea86ac428f5f8f32c
3
+ metadata.gz: 03d54ad09de5cb0967f606012d9d35a6cc9c5667
4
+ data.tar.gz: 31f491b9020f45c643c0c3b4805f1578cbd21426
5
5
  SHA512:
6
- metadata.gz: 2a12c15e3a122bd363c139dc836fede7ba3bc397d62f4062c34adc4f5a981159099097064241eb1fdbd60a3ec863c144be47582b94265af1d514c362f45bd976
7
- data.tar.gz: ef3244eac9b14c4ad643a973a5528bd77c0806e6e72fc57a38a416d6d31fef2cf0fb2708a22e97c80338489f06b74c2dbda4e2189cf3c6916c173f3c9d6f4540
6
+ metadata.gz: 71ef60891e42b524bf1c1278408990c31ffc6a7b92c45d5027d78d9633f5f2ab1a9110d3550201f9ec2f6d6e6290c496d28c22037c3ff1eb019c2800bbf1ab53
7
+ data.tar.gz: 84a29a4f3ebb67fea5d3cd5f444be530f9a612963fdcf2964beab2c9e50732df5cd1c9f9017cc5bba2d4a19baa08eefcd49de9dd5648111553f17d3627634ed8
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cupertino (1.3.0)
4
+ cupertino (1.3.1)
5
5
  certified (>= 0.1.0)
6
- commander (~> 4.2.0)
6
+ commander (~> 4.3)
7
7
  mechanize (~> 2.5.1)
8
8
  nokogiri (~> 1.6.3)
9
9
  security (~> 0.1.2)
@@ -14,7 +14,7 @@ GEM
14
14
  remote: https://rubygems.org/
15
15
  specs:
16
16
  certified (1.0.0)
17
- commander (4.2.0)
17
+ commander (4.3.0)
18
18
  highline (~> 1.6.11)
19
19
  diff-lcs (1.2.5)
20
20
  domain_name (0.5.19)
@@ -29,11 +29,11 @@ GEM
29
29
  ntlm-http (~> 0.1, >= 0.1.1)
30
30
  webrobots (~> 0.0, >= 0.0.9)
31
31
  mime-types (1.25.1)
32
- mini_portile (0.6.0)
32
+ mini_portile (0.6.2)
33
33
  net-http-digest_auth (1.4)
34
34
  net-http-persistent (2.9.4)
35
- nokogiri (1.6.3.1)
36
- mini_portile (= 0.6.0)
35
+ nokogiri (1.6.6.2)
36
+ mini_portile (~> 0.6.0)
37
37
  ntlm-http (0.1.1)
38
38
  rake (10.3.2)
39
39
  rspec (3.0.0)
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012 Mattt Thompson (http://mattt.me/)
1
+ Copyright (c) 2012–2015 Mattt Thompson (http://mattt.me/)
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -169,13 +169,9 @@ The following commands will format their output as [comma-separated values](http
169
169
 
170
170
  Cupertino will access the provisioning portal through a proxy if the `HTTP_PROXY` environment variable is set, with optional credentials `HTTP_PROXY_USER` and `HTTP_PROXY_PASSWORD`.
171
171
 
172
- ## Contact
172
+ ## Creator
173
173
 
174
- Mattt Thompson
175
-
176
- - http://github.com/mattt
177
- - http://twitter.com/mattt
178
- - m@mattt.me
174
+ Mattt Thompson ([@mattt](https://twitter.com/mattt))
179
175
 
180
176
  ## License
181
177
 
Binary file
@@ -14,7 +14,7 @@ Gem::Specification.new do |s|
14
14
  s.summary = "Cupertino"
15
15
  s.description = "A command-line interface for the iOS Provisioning Portal"
16
16
 
17
- s.add_dependency "commander", "~> 4.2.0"
17
+ s.add_dependency "commander", "~> 4.3"
18
18
  s.add_dependency "terminal-table", "~> 1.4.5"
19
19
  s.add_dependency "term-ansicolor", "~> 1.0.7"
20
20
  s.add_dependency "mechanize", "~> 2.5.1"
@@ -211,12 +211,12 @@ command :'profiles:manage:devices:list' do |c|
211
211
  when :csv
212
212
  CSV.generate do |csv|
213
213
  csv << ["Device Name", "Device Identifier", "Active"]
214
-
215
- list.values.each do |devices|
216
- devices.each do |device|
217
- csv << [device.name, device.udid, "Y"]
218
- end
219
- end
214
+ list[:on].each do |device|
215
+ csv << [device.name, device.udid, "Y"]
216
+ end
217
+ list[:off].each do |device|
218
+ csv << [device.name, device.udid, "N"]
219
+ end
220
220
  end
221
221
  else
222
222
  title = "Listing devices for provisioning profile #{profile.name}"
@@ -1,3 +1,3 @@
1
1
  module Cupertino
2
- VERSION = '1.3.0'
2
+ VERSION = '1.3.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cupertino
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mattt Thompson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-23 00:00:00.000000000 Z
11
+ date: 2015-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: commander
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ~>
18
18
  - !ruby/object:Gem::Version
19
- version: 4.2.0
19
+ version: '4.3'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ~>
25
25
  - !ruby/object:Gem::Version
26
- version: 4.2.0
26
+ version: '4.3'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: terminal-table
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -147,6 +147,7 @@ files:
147
147
  - ./cupertino-1.2.2.gem
148
148
  - ./cupertino-1.2.3.gem
149
149
  - ./cupertino-1.2.4.gem
150
+ - ./cupertino-1.3.0.gem
150
151
  - ./cupertino.gemspec
151
152
  - ./Gemfile
152
153
  - ./Gemfile.lock