app-store-emigrant 0.0.3 → 0.0.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.
- data/README.md +19 -2
- data/lib/app-store-emigrant/version.rb +1 -1
- data/lib/app-store-emigrant.rb +4 -10
- metadata +104 -58
data/README.md
CHANGED
@@ -18,19 +18,36 @@ Background
|
|
18
18
|
For more information on the issues faced when moving countries with regards to
|
19
19
|
Apple's ecosystem please see [these](https://discussions.apple.com/thread/2443094) [discussions](https://discussions.apple.com/message/16273593).
|
20
20
|
|
21
|
+
**TL;DR**: For reasons unknown to mankind, Apple has made it rather complicated
|
22
|
+
to update applications bought in different stores, particularly after emigrating.
|
23
|
+
|
24
|
+
iTunes mentions updates are available, but refuses to actually update these apps
|
25
|
+
when asked to. These applications are also missing from the Purchases-tab.
|
26
|
+
|
27
|
+
App Store Emigrant tries to soothe these pains - albeit only partially - by
|
28
|
+
scanning your iTunes library folder for mobile applications and querying iTunes
|
29
|
+
for the latest versions available. One can then manually go into the store and
|
30
|
+
update each application, one by one. *sigh*
|
31
|
+
|
32
|
+

|
21
33
|
|
22
34
|
Installation
|
23
35
|
------------
|
24
36
|
|
25
|
-
App Store Emigrant is available from RubyGems and can be installed
|
37
|
+
App Store Emigrant is available from RubyGems and can be installed through the
|
38
|
+
command-line. Fire up your favourite terminal and run:
|
26
39
|
|
27
40
|
$ gem install app-store-emigrant
|
28
41
|
|
42
|
+
Installing on **OSX** and using the **default system Ruby**? Run:
|
43
|
+
|
44
|
+
$ sudo gem install app-store-emigrant
|
45
|
+
|
29
46
|
|
30
47
|
Usage
|
31
48
|
-----
|
32
49
|
|
33
|
-
Once installed, a new not-so-fantastically named binary called
|
50
|
+
Once installed, a new not-so-fantastically named binary called ```ase``` will be
|
34
51
|
added to your path. Invoke the binary to start the verification process:
|
35
52
|
|
36
53
|
$ ase
|
data/lib/app-store-emigrant.rb
CHANGED
@@ -1,11 +1,5 @@
|
|
1
1
|
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
autoload :App, 'app-store-emigrant/app'
|
7
|
-
autoload :CLI, 'app-store-emigrant/cli'
|
8
|
-
autoload :Library, 'app-store-emigrant/library'
|
9
|
-
autoload :VERSION, 'app-store-emigrant/version'
|
10
|
-
|
11
|
-
end
|
2
|
+
require 'app-store-emigrant/app'
|
3
|
+
require 'app-store-emigrant/cli'
|
4
|
+
require 'app-store-emigrant/library'
|
5
|
+
require 'app-store-emigrant/version'
|
metadata
CHANGED
@@ -1,70 +1,110 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: app-store-emigrant
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 0
|
8
|
+
- 4
|
9
|
+
version: 0.0.4
|
6
10
|
platform: ruby
|
7
|
-
authors:
|
11
|
+
authors:
|
8
12
|
- Tim Kurvers
|
9
13
|
autorequire:
|
10
14
|
bindir: bin
|
11
15
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
16
|
+
|
17
|
+
date: 2012-04-19 00:00:00 +02:00
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
15
21
|
name: rubyzip
|
16
|
-
|
17
|
-
|
18
|
-
requirements:
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
19
25
|
- - ~>
|
20
|
-
- !ruby/object:Gem::Version
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
segments:
|
28
|
+
- 0
|
29
|
+
- 9
|
30
|
+
- 5
|
21
31
|
version: 0.9.5
|
22
32
|
type: :runtime
|
23
|
-
|
24
|
-
|
25
|
-
- !ruby/object:Gem::Dependency
|
33
|
+
version_requirements: *id001
|
34
|
+
- !ruby/object:Gem::Dependency
|
26
35
|
name: rainbow
|
27
|
-
|
28
|
-
|
29
|
-
requirements:
|
36
|
+
prerelease: false
|
37
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
30
39
|
- - ~>
|
31
|
-
- !ruby/object:Gem::Version
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
segments:
|
42
|
+
- 1
|
43
|
+
- 1
|
44
|
+
- 3
|
32
45
|
version: 1.1.3
|
33
46
|
type: :runtime
|
34
|
-
|
35
|
-
|
36
|
-
- !ruby/object:Gem::Dependency
|
47
|
+
version_requirements: *id002
|
48
|
+
- !ruby/object:Gem::Dependency
|
37
49
|
name: CFPropertyList
|
38
|
-
|
39
|
-
|
40
|
-
requirements:
|
50
|
+
prerelease: false
|
51
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
41
53
|
- - ~>
|
42
|
-
- !ruby/object:Gem::Version
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
segments:
|
56
|
+
- 2
|
57
|
+
- 0
|
58
|
+
- 17
|
43
59
|
version: 2.0.17
|
44
60
|
type: :runtime
|
45
|
-
|
46
|
-
|
47
|
-
- !ruby/object:Gem::Dependency
|
61
|
+
version_requirements: *id003
|
62
|
+
- !ruby/object:Gem::Dependency
|
48
63
|
name: rake
|
49
|
-
|
50
|
-
|
51
|
-
requirements:
|
52
|
-
- -
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
|
64
|
+
prerelease: false
|
65
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - ">="
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
segments:
|
70
|
+
- 0
|
71
|
+
version: "0"
|
55
72
|
type: :development
|
73
|
+
version_requirements: *id004
|
74
|
+
- !ruby/object:Gem::Dependency
|
75
|
+
name: json
|
56
76
|
prerelease: false
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
77
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
segments:
|
82
|
+
- 0
|
83
|
+
version: "0"
|
84
|
+
type: :runtime
|
85
|
+
version_requirements: *id005
|
86
|
+
- !ruby/object:Gem::Dependency
|
87
|
+
name: minitest
|
88
|
+
prerelease: false
|
89
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
90
|
+
requirements:
|
91
|
+
- - ">="
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
segments:
|
94
|
+
- 0
|
95
|
+
version: "0"
|
96
|
+
type: :development
|
97
|
+
version_requirements: *id006
|
98
|
+
description: App Store Emigrant will manually attempt to verify whether any of your local mobile applications are out of date, which iTunes - unfortunately - will refuse once you have moved countries
|
99
|
+
email:
|
62
100
|
- tim@moonsphere.net
|
63
|
-
executables:
|
101
|
+
executables:
|
64
102
|
- ase
|
65
103
|
extensions: []
|
104
|
+
|
66
105
|
extra_rdoc_files: []
|
67
|
-
|
106
|
+
|
107
|
+
files:
|
68
108
|
- .gitignore
|
69
109
|
- .travis.yml
|
70
110
|
- CHANGELOG
|
@@ -86,29 +126,35 @@ files:
|
|
86
126
|
- specs/fixtures/dummy-library/iTunesMetadata.plist
|
87
127
|
- specs/helpers.rb
|
88
128
|
- specs/library.rb
|
129
|
+
has_rdoc: true
|
89
130
|
homepage: https://github.com/timkurvers/app-store-emigrant
|
90
131
|
licenses: []
|
132
|
+
|
91
133
|
post_install_message:
|
92
134
|
rdoc_options: []
|
93
|
-
|
135
|
+
|
136
|
+
require_paths:
|
94
137
|
- lib
|
95
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
requirements:
|
104
|
-
- -
|
105
|
-
- !ruby/object:Gem::Version
|
106
|
-
|
138
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
139
|
+
requirements:
|
140
|
+
- - ">="
|
141
|
+
- !ruby/object:Gem::Version
|
142
|
+
segments:
|
143
|
+
- 0
|
144
|
+
version: "0"
|
145
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
146
|
+
requirements:
|
147
|
+
- - ">="
|
148
|
+
- !ruby/object:Gem::Version
|
149
|
+
segments:
|
150
|
+
- 0
|
151
|
+
version: "0"
|
107
152
|
requirements: []
|
153
|
+
|
108
154
|
rubyforge_project: app-store-emigrant
|
109
|
-
rubygems_version: 1.
|
155
|
+
rubygems_version: 1.3.6
|
110
156
|
signing_key:
|
111
157
|
specification_version: 3
|
112
|
-
summary: App Store Emigrant will manually attempt to verify whether any of your local
|
113
|
-
mobile applications are out of date
|
158
|
+
summary: App Store Emigrant will manually attempt to verify whether any of your local mobile applications are out of date
|
114
159
|
test_files: []
|
160
|
+
|