cupertinopro 0.1.3 → 0.1.4
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 232643d3e794a36280fb2211be8eab7d634c971d
|
|
4
|
+
data.tar.gz: 4f3c97a665c18565e70ce308ba20c0fa26191973
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 62723ee1a21f5099d2855ff8ff6f086ec2886044d1e095ad0ff624d4287a2c701b9b556d54faf2c9b6b0787c676d00e05552fd5384d35ac7ec6297626cf3679d
|
|
7
|
+
data.tar.gz: 14ed3c0e94bbc390a2326bcfbce9329d83e1894c41dd2a9caefc7eb8a72901f67e4e64fd6e7ccc4c4ca1f2d3235084e627697e2f19d966b2b3365125b8b687ba
|
|
File without changes
|
|
@@ -53,13 +53,21 @@ command :'profiles:download' do |c|
|
|
|
53
53
|
|
|
54
54
|
c.action do |args, options|
|
|
55
55
|
type = (options.type.downcase.to_sym if options.type) || :development
|
|
56
|
+
|
|
57
|
+
puts "DOWNLOADING PROFILE ACTIVATED, LISTING PROFILES"
|
|
58
|
+
|
|
56
59
|
profiles = try{agent.list_profiles(type)}
|
|
60
|
+
|
|
61
|
+
puts "PROFILES LISTED, SELECTING ACTIVE PROFILE..."
|
|
62
|
+
|
|
57
63
|
profiles = profiles.select{|profile| profile.status == 'Active'}
|
|
58
64
|
|
|
59
65
|
say_warning "No active #{type} profiles found." and abort if profiles.empty?
|
|
60
66
|
|
|
61
67
|
profile = profiles.find{|p| p.name == args.join(" ")} || choose("Select a profile:", *profiles)
|
|
62
68
|
|
|
69
|
+
puts "SELECTED PROFILE..."
|
|
70
|
+
|
|
63
71
|
if filename = agent.download_profile(profile)
|
|
64
72
|
say_ok "Successfully downloaded: '#{filename}'"
|
|
65
73
|
else
|
data/lib/cupertinopro/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cupertinopro
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mattt Thompson
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-06-
|
|
12
|
+
date: 2014-06-16 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: commander
|
|
@@ -158,24 +158,24 @@ executables:
|
|
|
158
158
|
extensions: []
|
|
159
159
|
extra_rdoc_files: []
|
|
160
160
|
files:
|
|
161
|
-
- "./
|
|
161
|
+
- "./cupertinopro.gemspec"
|
|
162
162
|
- "./Gemfile"
|
|
163
163
|
- "./Gemfile.lock"
|
|
164
|
-
- "./LICENSE"
|
|
165
|
-
- "./README.md"
|
|
166
|
-
- "./Rakefile"
|
|
167
|
-
- "./lib/cupertinopro.rb"
|
|
168
|
-
- "./lib/cupertinopro/provisioning_portal.rb"
|
|
169
164
|
- "./lib/cupertinopro/provisioning_portal/agent.rb"
|
|
170
|
-
- "./lib/cupertinopro/provisioning_portal/commands.rb"
|
|
171
165
|
- "./lib/cupertinopro/provisioning_portal/commands/app_ids.rb"
|
|
172
166
|
- "./lib/cupertinopro/provisioning_portal/commands/certificates.rb"
|
|
173
167
|
- "./lib/cupertinopro/provisioning_portal/commands/devices.rb"
|
|
174
168
|
- "./lib/cupertinopro/provisioning_portal/commands/login.rb"
|
|
175
169
|
- "./lib/cupertinopro/provisioning_portal/commands/logout.rb"
|
|
176
170
|
- "./lib/cupertinopro/provisioning_portal/commands/profiles.rb"
|
|
171
|
+
- "./lib/cupertinopro/provisioning_portal/commands.rb"
|
|
177
172
|
- "./lib/cupertinopro/provisioning_portal/helpers.rb"
|
|
173
|
+
- "./lib/cupertinopro/provisioning_portal.rb"
|
|
178
174
|
- "./lib/cupertinopro/version.rb"
|
|
175
|
+
- "./lib/cupertinopro.rb"
|
|
176
|
+
- "./LICENSE"
|
|
177
|
+
- "./Rakefile"
|
|
178
|
+
- "./README.md"
|
|
179
179
|
- bin/iospro
|
|
180
180
|
homepage: http://nomad-cli.com
|
|
181
181
|
licenses:
|
|
@@ -197,7 +197,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
197
197
|
version: '0'
|
|
198
198
|
requirements: []
|
|
199
199
|
rubyforge_project:
|
|
200
|
-
rubygems_version: 2.
|
|
200
|
+
rubygems_version: 2.0.14
|
|
201
201
|
signing_key:
|
|
202
202
|
specification_version: 4
|
|
203
203
|
summary: CupertinoPro
|