andparcel 0.2.0 → 0.2.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.
- data/VERSION +1 -1
- data/andparcel.gemspec +2 -2
- data/lib/andparcel/parcel.rb +2 -4
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.1
|
data/andparcel.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{andparcel}
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Mark Murphy"]
|
|
12
|
-
s.date = %q{2010-05-
|
|
12
|
+
s.date = %q{2010-05-25}
|
|
13
13
|
s.default_executable = %q{parcel}
|
|
14
14
|
s.description = %q{Supplies the parcel command for packaging, installing, and removing parcels from an Android project}
|
|
15
15
|
s.email = %q{mmurphy@commonsware.com}
|
data/lib/andparcel/parcel.rb
CHANGED
|
@@ -6,7 +6,7 @@ require 'json'
|
|
|
6
6
|
require 'nokogiri'
|
|
7
7
|
require 'rio'
|
|
8
8
|
|
|
9
|
-
$WHITELIST=['attr', 'declare-styleable']
|
|
9
|
+
$WHITELIST=['attr', 'declare-styleable', 'enum']
|
|
10
10
|
$COMPONENTS=['activity', 'service', 'receiver', 'provider']
|
|
11
11
|
|
|
12
12
|
module AndParcel
|
|
@@ -474,10 +474,8 @@ module AndParcel
|
|
|
474
474
|
|
|
475
475
|
if (doc.root.name=='resources')
|
|
476
476
|
do_xml_resource(fr, doc)
|
|
477
|
-
else
|
|
478
|
-
do_simple_resource(fr)
|
|
479
477
|
end
|
|
480
|
-
|
|
478
|
+
|
|
481
479
|
do_simple_resource(fr)
|
|
482
480
|
end
|
|
483
481
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: andparcel
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mark Murphy
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2010-05-
|
|
12
|
+
date: 2010-05-25 00:00:00 -04:00
|
|
13
13
|
default_executable: parcel
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|