app-store-emigrant 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,5 +1,8 @@
1
1
  CHANGELOG
2
2
 
3
+ v0.0.6
4
+ - Added `json` gem as a runtime dependency for Ruby 1.8.x
5
+
3
6
  v0.0.5
4
7
  - Restructured fixtures to improve test coverage
5
8
  - Finding applications by id
data/README.md CHANGED
@@ -1,12 +1,7 @@
1
-
2
1
  App Store Emigrant [![Build Status](https://secure.travis-ci.org/timkurvers/app-store-emigrant.png?branch=master)](http://travis-ci.org/timkurvers/app-store-emigrant)
3
2
  ==================
4
3
 
5
- Copyright (c) 2012 Tim Kurvers <http://www.moonsphere.net>
6
-
7
- App Store Emigrant is a Ruby gem that will manually attempt to verify whether
8
- any of your local mobile applications are out of date, which iTunes will refuse
9
- to do automatically once you have moved countries.
4
+ App Store Emigrant is a Ruby gem that will manually attempt to verify whether any of your local mobile applications are out of date, which iTunes will refuse to do automatically once you have moved countries.
10
5
 
11
6
  **Suported Ruby versions: 1.8.7 or higher**
12
7
 
@@ -15,44 +10,33 @@ Licensed under the **MIT** license, see LICENSE for more information.
15
10
  Background
16
11
  ----------
17
12
 
18
- For more information on the issues faced when moving countries with regards to
19
- Apple's ecosystem please see [these](https://discussions.apple.com/thread/2443094) [discussions](https://discussions.apple.com/message/16273593).
13
+ For more information on the issues faced when moving countries with regards to Apple's ecosystem please see [these](https://discussions.apple.com/thread/2443094) [discussions](https://discussions.apple.com/message/16273593).
20
14
 
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.
15
+ **TL;DR**: For reasons unknown to mankind, Apple has made it rather complicated to update applications bought in different stores, particularly after emigrating. iTunes mentions updates are available, but refuses to actually update these apps when asked to. These applications are also missing from the Purchases-tab.
23
16
 
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*
17
+ App Store Emigrant tries to soothe these pains - albeit only partially - by scanning your iTunes library folder for mobile applications and querying iTunes for the latest versions available. One can then manually go into the store and update each application, one by one. *sigh*
31
18
 
32
19
  ![App Store Emigrant](http://office.moonsphere.net/app-store-emigrant.png)
33
20
 
34
21
  Installation
35
22
  ------------
36
23
 
37
- App Store Emigrant is available from RubyGems and can be installed through the
38
- command-line. Fire up your favourite terminal and run:
24
+ App Store Emigrant is available from RubyGems and can be installed through the command-line. Fire up your favourite terminal and run:
39
25
 
40
- $ gem install app-store-emigrant
26
+ gem install app-store-emigrant
41
27
 
42
28
  Installing on **OSX** and using the **default system Ruby**? Run:
43
29
 
44
- $ sudo gem install app-store-emigrant
30
+ sudo gem install app-store-emigrant
45
31
 
46
32
 
47
33
  Usage
48
34
  -----
49
35
 
50
- Once installed, a new not-so-fantastically named binary called ```ase``` will be
51
- added to your path. Invoke the binary to start the verification process:
36
+ Once installed, a new not-so-fantastically named binary called ```ase``` will be added to your path. Invoke the binary to start the verification process:
37
+
38
+ ase
52
39
 
53
- $ ase
54
-
55
- If App Store Emigrant complains that it cannot find your default library,
56
- help it along and specify where your mobile applications lurk:
40
+ If App Store Emigrant complains that it cannot find your default library, help it along and specify where your mobile applications lurk:
57
41
 
58
- $ ase ~/m00sic
42
+ ase ~/m00sic
@@ -21,6 +21,7 @@ Gem::Specification.new do |s|
21
21
  s.require_paths = ['lib']
22
22
 
23
23
  s.add_dependency 'rubyzip', '~> 0.9.5'
24
+ s.add_dependency 'json', '~> 1.7.4'
24
25
  s.add_dependency 'rainbow', '~> 1.1.3'
25
26
  s.add_dependency 'CFPropertyList', '~> 2.0.17'
26
27
 
@@ -3,6 +3,6 @@ module AppStore; end
3
3
 
4
4
  module AppStore::Emigrant
5
5
 
6
- VERSION = '0.0.5'
6
+ VERSION = '0.0.6'
7
7
 
8
8
  end
data/specs/helpers.rb CHANGED
@@ -1,3 +1,4 @@
1
+ require 'app-store-emigrant'
1
2
 
2
3
  # Helper constant holding path to tests-folder
3
4
  ROOT = File.dirname __FILE__
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: app-store-emigrant
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-05-22 00:00:00.000000000 Z
12
+ date: 2012-07-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rubyzip
16
- requirement: &70231670236280 !ruby/object:Gem::Requirement
16
+ requirement: &70230316035220 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,10 +21,21 @@ dependencies:
21
21
  version: 0.9.5
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70231670236280
24
+ version_requirements: *70230316035220
25
+ - !ruby/object:Gem::Dependency
26
+ name: json
27
+ requirement: &70230316032780 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ~>
31
+ - !ruby/object:Gem::Version
32
+ version: 1.7.4
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: *70230316032780
25
36
  - !ruby/object:Gem::Dependency
26
37
  name: rainbow
27
- requirement: &70231670235480 !ruby/object:Gem::Requirement
38
+ requirement: &70230316031840 !ruby/object:Gem::Requirement
28
39
  none: false
29
40
  requirements:
30
41
  - - ~>
@@ -32,10 +43,10 @@ dependencies:
32
43
  version: 1.1.3
33
44
  type: :runtime
34
45
  prerelease: false
35
- version_requirements: *70231670235480
46
+ version_requirements: *70230316031840
36
47
  - !ruby/object:Gem::Dependency
37
48
  name: CFPropertyList
38
- requirement: &70231670234800 !ruby/object:Gem::Requirement
49
+ requirement: &70230316030040 !ruby/object:Gem::Requirement
39
50
  none: false
40
51
  requirements:
41
52
  - - ~>
@@ -43,10 +54,10 @@ dependencies:
43
54
  version: 2.0.17
44
55
  type: :runtime
45
56
  prerelease: false
46
- version_requirements: *70231670234800
57
+ version_requirements: *70230316030040
47
58
  - !ruby/object:Gem::Dependency
48
59
  name: rake
49
- requirement: &70231670234020 !ruby/object:Gem::Requirement
60
+ requirement: &70230316049460 !ruby/object:Gem::Requirement
50
61
  none: false
51
62
  requirements:
52
63
  - - ! '>='
@@ -54,7 +65,7 @@ dependencies:
54
65
  version: '0'
55
66
  type: :development
56
67
  prerelease: false
57
- version_requirements: *70231670234020
68
+ version_requirements: *70230316049460
58
69
  description: App Store Emigrant will manually attempt to verify whether any of your
59
70
  local mobile applications are out of date, which iTunes - unfortunately - will refuse
60
71
  once you have moved countries
@@ -101,18 +112,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
101
112
  - - ! '>='
102
113
  - !ruby/object:Gem::Version
103
114
  version: '0'
104
- segments:
105
- - 0
106
- hash: -4548139282794052788
107
115
  required_rubygems_version: !ruby/object:Gem::Requirement
108
116
  none: false
109
117
  requirements:
110
118
  - - ! '>='
111
119
  - !ruby/object:Gem::Version
112
120
  version: '0'
113
- segments:
114
- - 0
115
- hash: -4548139282794052788
116
121
  requirements: []
117
122
  rubyforge_project: app-store-emigrant
118
123
  rubygems_version: 1.8.17