aptools 1.1.2 → 1.1.3

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.
Files changed (6) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile.lock +50 -15
  3. data/VERSION +1 -1
  4. data/aptools.gemspec +6 -5
  5. data/bin/installexp +3 -2
  6. metadata +16 -29
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: db16250c05dbc748b3bc2365170cdd4edbc84cdb
4
+ data.tar.gz: d350fef8bd8f76317edb25fa22887cc5e83bea8d
5
+ SHA512:
6
+ metadata.gz: 003a3e80efc468c5c2446b2b4b6345cf998914eb1a3d0473ddaf7ab310409dd9b6e638c16acaaa33d694befa0aad4ae0d1a9b15c61106ada4f989ab7bbf97ab0
7
+ data.tar.gz: 34b2e88984ddc133734019bb89c022f4fa9baa2fce6b75bc53d3feb0130e08d574c2fc28f9cf4b5d08c5553b6ce4380e47789a101578db303f1ad4977221cd19
data/Gemfile.lock CHANGED
@@ -1,27 +1,62 @@
1
1
  GEM
2
2
  remote: http://rubygems.org/
3
3
  specs:
4
- activesupport (3.2.8)
5
- i18n (~> 0.6)
6
- multi_json (~> 1.0)
7
- git (1.2.5)
8
- i18n (0.6.1)
9
- jeweler (1.8.4)
4
+ activesupport (4.1.4)
5
+ i18n (~> 0.6, >= 0.6.9)
6
+ json (~> 1.7, >= 1.7.7)
7
+ minitest (~> 5.1)
8
+ thread_safe (~> 0.1)
9
+ tzinfo (~> 1.1)
10
+ addressable (2.3.6)
11
+ builder (3.2.2)
12
+ faraday (0.8.9)
13
+ multipart-post (~> 1.2.0)
14
+ git (1.2.7)
15
+ github_api (0.10.1)
16
+ addressable
17
+ faraday (~> 0.8.1)
18
+ hashie (>= 1.2)
19
+ multi_json (~> 1.4)
20
+ nokogiri (~> 1.5.2)
21
+ oauth2
22
+ hashie (3.2.0)
23
+ highline (1.6.21)
24
+ i18n (0.6.11)
25
+ jeweler (1.8.8)
26
+ builder
10
27
  bundler (~> 1.0)
11
28
  git (>= 1.2.5)
29
+ github_api (= 0.10.1)
30
+ highline (>= 1.6.15)
31
+ nokogiri (= 1.5.10)
12
32
  rake
13
33
  rdoc
14
- json (1.7.5)
15
- multi_json (1.3.6)
16
- rake (0.9.2.2)
17
- rdoc (3.12)
34
+ json (1.8.1)
35
+ jwt (1.0.0)
36
+ minitest (5.4.0)
37
+ multi_json (1.10.1)
38
+ multi_xml (0.5.5)
39
+ multipart-post (1.2.0)
40
+ nokogiri (1.5.10)
41
+ oauth2 (1.0.0)
42
+ faraday (>= 0.8, < 0.10)
43
+ jwt (~> 1.0)
44
+ multi_json (~> 1.3)
45
+ multi_xml (~> 0.5)
46
+ rack (~> 1.2)
47
+ rack (1.5.2)
48
+ rake (10.3.2)
49
+ rdoc (3.12.2)
18
50
  json (~> 1.4)
19
- shoulda (3.3.1)
20
- shoulda-context (~> 1.0)
21
- shoulda-matchers (~> 1.4.1)
22
- shoulda-context (1.0.1)
23
- shoulda-matchers (1.4.1)
51
+ shoulda (3.5.0)
52
+ shoulda-context (~> 1.0, >= 1.0.1)
53
+ shoulda-matchers (>= 1.4.1, < 3.0)
54
+ shoulda-context (1.2.1)
55
+ shoulda-matchers (2.6.1)
24
56
  activesupport (>= 3.0.0)
57
+ thread_safe (0.3.4)
58
+ tzinfo (1.2.1)
59
+ thread_safe (~> 0.1)
25
60
 
26
61
  PLATFORMS
27
62
  ruby
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.2
1
+ 1.1.3
data/aptools.gemspec CHANGED
@@ -2,14 +2,16 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
+ # stub: aptools 1.1.3 ruby lib
5
6
 
6
7
  Gem::Specification.new do |s|
7
8
  s.name = "aptools"
8
- s.version = "1.1.2"
9
+ s.version = "1.1.3"
9
10
 
10
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
+ s.require_paths = ["lib"]
11
13
  s.authors = ["Chinmay Garde"]
12
- s.date = "2013-10-13"
14
+ s.date = "2014-07-17"
13
15
  s.description = "Assorted tools for Apportable Platform"
14
16
  s.email = "chinmay@apportable.com"
15
17
  s.executables = ["apaapt", "apadb", "installexp"]
@@ -35,12 +37,11 @@ Gem::Specification.new do |s|
35
37
  ]
36
38
  s.homepage = "https://bitbucket.org/chinmaygarde/installexp"
37
39
  s.licenses = ["MIT"]
38
- s.require_paths = ["lib"]
39
- s.rubygems_version = "1.8.24"
40
+ s.rubygems_version = "2.2.2"
40
41
  s.summary = "Assorted tools for Apportable Platform"
41
42
 
42
43
  if s.respond_to? :specification_version then
43
- s.specification_version = 3
44
+ s.specification_version = 4
44
45
 
45
46
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
46
47
  s.add_development_dependency(%q<shoulda>, [">= 0"])
data/bin/installexp CHANGED
@@ -66,10 +66,11 @@ def InstallAPK(package_name, debug)
66
66
  ExecuteCommand("#{ExecutablePath('apadb')} uninstall #{package_name}", debug)
67
67
 
68
68
  version_string = ExecuteCommand("#{ExecutablePath('apadb')} shell getprop ro.build.version.release", debug)
69
- version = version_string.match("\\d.(\\d)*")[0].to_f
69
+
70
+ version_match = version_string.match("\\d.(\\d)*")
70
71
 
71
72
  path_prefix = "/mnt/sdcard/Android/obb"
72
- if version >= 4.2
73
+ if version_match == nil || version_match[0].to_f >= 4.2
73
74
  path_prefix = "/mnt/shell/emulated/obb"
74
75
  end
75
76
 
metadata CHANGED
@@ -1,78 +1,69 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aptools
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
5
- prerelease:
4
+ version: 1.1.3
6
5
  platform: ruby
7
6
  authors:
8
7
  - Chinmay Garde
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-10-13 00:00:00.000000000 Z
11
+ date: 2014-07-17 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: shoulda
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: '0'
22
20
  type: :development
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: '0'
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: rdoc
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ~>
31
+ - - "~>"
36
32
  - !ruby/object:Gem::Version
37
33
  version: '3.12'
38
34
  type: :development
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ~>
38
+ - - "~>"
44
39
  - !ruby/object:Gem::Version
45
40
  version: '3.12'
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: bundler
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ! '>='
45
+ - - ">="
52
46
  - !ruby/object:Gem::Version
53
47
  version: '0'
54
48
  type: :development
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ! '>='
52
+ - - ">="
60
53
  - !ruby/object:Gem::Version
61
54
  version: '0'
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: jeweler
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
- - - ~>
59
+ - - "~>"
68
60
  - !ruby/object:Gem::Version
69
61
  version: 1.8.4
70
62
  type: :development
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
- - - ~>
66
+ - - "~>"
76
67
  - !ruby/object:Gem::Version
77
68
  version: 1.8.4
78
69
  description: Assorted tools for Apportable Platform
@@ -86,7 +77,7 @@ extra_rdoc_files:
86
77
  - LICENSE.txt
87
78
  - README.rdoc
88
79
  files:
89
- - .document
80
+ - ".document"
90
81
  - Gemfile
91
82
  - Gemfile.lock
92
83
  - LICENSE.txt
@@ -103,29 +94,25 @@ files:
103
94
  homepage: https://bitbucket.org/chinmaygarde/installexp
104
95
  licenses:
105
96
  - MIT
97
+ metadata: {}
106
98
  post_install_message:
107
99
  rdoc_options: []
108
100
  require_paths:
109
101
  - lib
110
102
  required_ruby_version: !ruby/object:Gem::Requirement
111
- none: false
112
103
  requirements:
113
- - - ! '>='
104
+ - - ">="
114
105
  - !ruby/object:Gem::Version
115
106
  version: '0'
116
- segments:
117
- - 0
118
- hash: -84416112050255586
119
107
  required_rubygems_version: !ruby/object:Gem::Requirement
120
- none: false
121
108
  requirements:
122
- - - ! '>='
109
+ - - ">="
123
110
  - !ruby/object:Gem::Version
124
111
  version: '0'
125
112
  requirements: []
126
113
  rubyforge_project:
127
- rubygems_version: 1.8.24
114
+ rubygems_version: 2.2.2
128
115
  signing_key:
129
- specification_version: 3
116
+ specification_version: 4
130
117
  summary: Assorted tools for Apportable Platform
131
118
  test_files: []