protoform 0.1.0 → 0.1.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/Gemfile +1 -1
- data/Gemfile.lock +1 -1
- data/README.md +2 -2
- data/Rakefile +0 -1
- data/VERSION +1 -1
- data/protoform.gemspec +83 -0
- metadata +6 -19
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -14,8 +14,8 @@ Android Manager (`android`) found in the SDK.
|
|
14
14
|
You'll also want to have Mirah installed of course. You can get it from
|
15
15
|
GitHub: https://github.com/mirah/mirah
|
16
16
|
|
17
|
-
Make sure that mirah and mirahc are in your PATH as well as the Android
|
18
|
-
tools directory.
|
17
|
+
Make sure that jruby, mirah and mirahc are in your PATH as well as the Android
|
18
|
+
SDK tools directory.
|
19
19
|
|
20
20
|
## Usage
|
21
21
|
|
data/Rakefile
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/protoform.gemspec
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{protoform}
|
8
|
+
s.version = "0.1.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Nick Plante"]
|
12
|
+
s.date = %q{2010-11-28}
|
13
|
+
s.default_executable = %q{protoform}
|
14
|
+
s.description = %q{Generates a basic skeleton for a Mirah Android application}
|
15
|
+
s.email = %q{nap@zerosum.org}
|
16
|
+
s.executables = ["protoform"]
|
17
|
+
s.extra_rdoc_files = [
|
18
|
+
"LICENSE.txt",
|
19
|
+
"README.md"
|
20
|
+
]
|
21
|
+
s.files = [
|
22
|
+
"Gemfile",
|
23
|
+
"Gemfile.lock",
|
24
|
+
"LICENSE.txt",
|
25
|
+
"README.md",
|
26
|
+
"Rakefile",
|
27
|
+
"VERSION",
|
28
|
+
"bin/protoform",
|
29
|
+
"lib/generators/android/USAGE",
|
30
|
+
"lib/generators/android/android_generator.rb",
|
31
|
+
"lib/generators/android/templates/AndroidManifest.xml",
|
32
|
+
"lib/generators/android/templates/README.md",
|
33
|
+
"lib/generators/android/templates/application.mirah",
|
34
|
+
"lib/generators/android/templates/build.properties",
|
35
|
+
"lib/generators/android/templates/build.xml",
|
36
|
+
"lib/generators/android/templates/default.properties",
|
37
|
+
"lib/generators/android/templates/local.properties",
|
38
|
+
"lib/generators/android/templates/res/drawable-hdpi/icon.png",
|
39
|
+
"lib/generators/android/templates/res/drawable-ldpi/icon.png",
|
40
|
+
"lib/generators/android/templates/res/drawable-mdpi/icon.png",
|
41
|
+
"lib/generators/android/templates/res/layout/main.xml",
|
42
|
+
"lib/generators/android/templates/res/values/strings.xml",
|
43
|
+
"lib/protoform.rb",
|
44
|
+
"protoform.gemspec",
|
45
|
+
"test/helper.rb",
|
46
|
+
"test/protoform.rb"
|
47
|
+
]
|
48
|
+
s.homepage = %q{http://github.com/zapnap/protoform}
|
49
|
+
s.licenses = ["MIT"]
|
50
|
+
s.require_paths = ["lib"]
|
51
|
+
s.rubygems_version = %q{1.3.6}
|
52
|
+
s.summary = %q{Generates a basic skeleton for a Mirah Android application}
|
53
|
+
s.test_files = [
|
54
|
+
"test/helper.rb",
|
55
|
+
"test/protoform.rb"
|
56
|
+
]
|
57
|
+
|
58
|
+
if s.respond_to? :specification_version then
|
59
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
60
|
+
s.specification_version = 3
|
61
|
+
|
62
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
63
|
+
s.add_runtime_dependency(%q<rubigen>, [">= 1.5.5"])
|
64
|
+
s.add_runtime_dependency(%q<shoulda>, [">= 0"])
|
65
|
+
s.add_runtime_dependency(%q<bundler>, ["~> 1.0.0"])
|
66
|
+
s.add_runtime_dependency(%q<jeweler>, ["~> 1.5.1"])
|
67
|
+
s.add_runtime_dependency(%q<rcov>, [">= 0"])
|
68
|
+
else
|
69
|
+
s.add_dependency(%q<rubigen>, [">= 1.5.5"])
|
70
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
71
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
72
|
+
s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
|
73
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
74
|
+
end
|
75
|
+
else
|
76
|
+
s.add_dependency(%q<rubigen>, [">= 1.5.5"])
|
77
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
78
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
79
|
+
s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
|
80
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
8
|
+
- 1
|
9
|
+
version: 0.1.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Nick Plante
|
@@ -21,13 +21,13 @@ dependencies:
|
|
21
21
|
name: rubigen
|
22
22
|
version_requirements: &id001 !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
segments:
|
27
27
|
- 1
|
28
28
|
- 5
|
29
|
-
-
|
30
|
-
version: 1.5.
|
29
|
+
- 5
|
30
|
+
version: 1.5.5
|
31
31
|
requirement: *id001
|
32
32
|
prerelease: false
|
33
33
|
type: :runtime
|
@@ -83,20 +83,6 @@ dependencies:
|
|
83
83
|
requirement: *id005
|
84
84
|
prerelease: false
|
85
85
|
type: :runtime
|
86
|
-
- !ruby/object:Gem::Dependency
|
87
|
-
name: rubigen
|
88
|
-
version_requirements: &id006 !ruby/object:Gem::Requirement
|
89
|
-
requirements:
|
90
|
-
- - ">="
|
91
|
-
- !ruby/object:Gem::Version
|
92
|
-
segments:
|
93
|
-
- 1
|
94
|
-
- 5
|
95
|
-
- 5
|
96
|
-
version: 1.5.5
|
97
|
-
requirement: *id006
|
98
|
-
prerelease: false
|
99
|
-
type: :runtime
|
100
86
|
description: Generates a basic skeleton for a Mirah Android application
|
101
87
|
email: nap@zerosum.org
|
102
88
|
executables:
|
@@ -129,6 +115,7 @@ files:
|
|
129
115
|
- lib/generators/android/templates/res/layout/main.xml
|
130
116
|
- lib/generators/android/templates/res/values/strings.xml
|
131
117
|
- lib/protoform.rb
|
118
|
+
- protoform.gemspec
|
132
119
|
- test/helper.rb
|
133
120
|
- test/protoform.rb
|
134
121
|
has_rdoc: true
|