moonwalkair 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,38 +1,39 @@
1
1
  <!doctype html>
2
2
  <html>
3
- <head>
4
- <meta charset="UTF-8" />
5
- <title>MoonwalkAIR beta</title>
6
- <style type="text/css" media="screen">
7
- @import "../assets/css/jqtouch.css";
8
- @import "../assets/css/theme.css";
9
- </style>
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <title>MoonwalkAIR beta</title>
6
+ <style type="text/css" media="screen">
7
+ @import "../assets/css/jqtouch.css";
8
+ @import "../assets/css/theme.css";
9
+ @import "../assets/css/application.css";
10
+ </style>
10
11
 
11
- <script src="../lib/jquery.js" type="text/javascript" charset="utf-8" />
12
- <script src="../lib/plugins/jqtouch/jqtouch.js" type="text/javascript" charset="utf-8" />
13
- <script src='../lib/air/AIRAliases.js' type="text/javascript" charset="utf-8" />
12
+ <script src="../lib/jquery.js" type="text/javascript" charset="utf-8" />
13
+ <script src="../lib/plugins/jqtouch/jqtouch.js" type="text/javascript" charset="utf-8" />
14
+ <script src='../lib/air/AIRAliases.js' type="text/javascript" charset="utf-8" />
14
15
 
15
- <script type="text/javascript" charset="utf-8">
16
- var jQT = new $.jQTouch({ });
17
- </script>
18
-
19
- </head>
20
- <body>
21
- <div id='home'>
22
- <div class='toolbar'>
23
- <h1>Home</h1>
24
- </div>
25
- <ul class='rounded'>
26
- <li class='arrow'><a href="#todo">TODO</a></li>
27
- </ul>
16
+ <script type="text/javascript" charset="utf-8">
17
+ $.jQTouch({ });
18
+ </script>
19
+ </head>
20
+ <body>
21
+ <div id="home">
22
+ <div class="toolbar">
23
+ <h1>Wellcome</h1>
24
+ <a href="#info" class="button leftButton flip">Info</a>
28
25
  </div>
26
+ </div>
29
27
 
30
- <div id='todo'>
31
- <div class='toolbar'>
32
- <a href="#home" class="back">back</a>
33
- <h1>Another Screen</h1>
34
- </div>
28
+ <div id="info">
29
+ <div class="toolbar">
30
+ <h1>About</h1>
31
+ <a href="#home" class="back">Back</a>
32
+ </div>
33
+ <div class="info">
34
+ This is a demo for MoonwalkAir.
35
35
  </div>
36
+ </div>
36
37
 
37
- </body>
38
+ </body>
38
39
  </html>
@@ -1,122 +1,122 @@
1
1
  <?xml version="1.0" encoding="utf-8" ?>
2
2
  <application xmlns="http://ns.adobe.com/air/application/1.5">
3
- <!-- The application identifier string, unique to this application. Required. -->
4
- <id><%= "com.#{project_name}" %></id>
3
+ <!-- The application identifier string, unique to this application. Required. -->
4
+ <id><%= "com.#{project_name}" %></id>
5
5
 
6
- <!-- Used as the filename for the application. Required. -->
7
- <filename><%= project_name %></filename>
6
+ <!-- Used as the filename for the application. Required. -->
7
+ <filename><%= project_name %></filename>
8
8
 
9
- <!-- The name that is displayed in the AIR application installer.
10
- May have multiple values for each language. See samples or xsd schema file. Optional. -->
11
- <name><%= project_name %></name>
12
-
13
- <!-- An application version designator (such as "v1", "2.5", or "Alpha 1"). Required. -->
14
- <version>0.1</version>
15
-
16
- <!-- Description, displayed in the AIR application installer.
17
- May have multiple values for each language. See samples or xsd schema file. Optional. -->
18
- <description></description>
19
-
20
- <!-- Copyright information. Optional -->
21
- <copyright></copyright>
22
-
23
- <!-- Settings for the application's initial window. Required. -->
24
- <initialWindow>
25
- <!-- The main SWF or HTML file of the application. Required. -->
26
- <!-- Note: In Flash Builder, the SWF reference is set automatically. -->
27
- <content>app/views/index.html</content>
28
-
29
- <!-- The title of the main window. Optional. -->
30
- <!-- <title></title> -->
31
-
32
- <!-- The type of system chrome to use (either "standard" or "none"). Optional. Default standard. -->
33
- <!-- <systemChrome></systemChrome> -->
34
-
35
- <!-- Whether the window is transparent. Only applicable when systemChrome is none. Optional. Default false. -->
36
- <!-- <transparent></transparent> -->
37
-
38
- <!-- Whether the window is initially visible. Optional. Default false. -->
39
- <visible>true</visible>
40
-
41
- <!-- Whether the user can minimize the window. Optional. Default true. -->
42
- <!-- <minimizable></minimizable> -->
43
-
44
- <!-- Whether the user can maximize the window. Optional. Default true. -->
45
- <!-- <maximizable></maximizable> -->
46
-
47
- <!-- Whether the user can resize the window. Optional. Default true. -->
48
- <!-- <resizable></resizable> -->
49
-
50
- <!-- The window's initial width. Optional. -->
51
- <!-- <width></width> -->
52
-
53
- <!-- The window's initial height. Optional. -->
54
- <!-- <height></height> -->
55
-
56
- <!-- The window's initial x position. Optional. -->
57
- <!-- <x></x> -->
58
-
59
- <!-- The window's initial y position. Optional. -->
60
- <!-- <y></y> -->
61
-
62
- <!-- The window's minimum size, specified as a width/height pair, such as "400 200". Optional. -->
63
- <!-- <minSize></minSize> -->
64
-
65
- <!-- The window's initial maximum size, specified as a width/height pair, such as "1600 1200". Optional. -->
66
- <!-- <maxSize></maxSize> -->
67
- </initialWindow>
68
-
69
- <!-- The subpath of the standard default installation location to use. Optional. -->
70
- <!-- <installFolder></installFolder> -->
71
-
72
- <!-- The subpath of the Programs menu to use. (Ignored on operating systems without a Programs menu.) Optional. -->
73
- <!-- <programMenuFolder></programMenuFolder> -->
74
-
75
- <!-- The icon the system uses for the application. For at least one resolution,
76
- specify the path to a PNG file included in the AIR package. Optional. -->
77
- <icon>
78
- <image16x16>app/assets/images/icons/16.png</image16x16>
79
- <image32x32>app/assets/images/icons/32.png</image32x32>
80
- <image48x48>app/assets/images/icons/48.png</image48x48>
81
- <image128x128>app/assets/images/icons/128.png</image128x128>
82
- </icon>
83
-
84
- <!-- Whether the application handles the update when a user double-clicks an update version
85
- of the AIR file (true), or the default AIR application installer handles the update (false).
86
- Optional. Default false. -->
87
- <!-- <customUpdateUI></customUpdateUI> -->
88
-
89
- <!-- Whether the application can be launched when the user clicks a link in a web browser.
90
- Optional. Default false. -->
91
- <!-- <allowBrowserInvocation></allowBrowserInvocation> -->
92
-
93
- <!-- Listing of file types for which the application can register. Optional. -->
94
- <!-- <fileTypes> -->
95
-
96
- <!-- Defines one file type. Optional. -->
97
- <!-- <fileType> -->
98
-
99
- <!-- The name that the system displays for the registered file type. Required. -->
100
- <!-- <name></name> -->
101
-
102
- <!-- The extension to register. Required. -->
103
- <!-- <extension></extension> -->
104
-
105
- <!-- The description of the file type. Optional. -->
106
- <!-- <description></description> -->
107
-
108
- <!-- The MIME content type. -->
109
- <!-- <contentType></contentType> -->
110
-
111
- <!-- The icon to display for the file type. Optional. -->
112
- <!-- <icon>
113
- <image16x16></image16x16>
114
- <image32x32></image32x32>
115
- <image48x48></image48x48>
116
- <image128x128></image128x128>
117
- </icon> -->
118
-
119
- <!-- </fileType> -->
120
- <!-- </fileTypes> -->
9
+ <!-- The name that is displayed in the AIR application installer.
10
+ May have multiple values for each language. See samples or xsd schema file. Optional. -->
11
+ <name><%= project_name %></name>
12
+
13
+ <!-- An application version designator (such as "v1", "2.5", or "Alpha 1"). Required. -->
14
+ <version>0.1</version>
15
+
16
+ <!-- Description, displayed in the AIR application installer.
17
+ May have multiple values for each language. See samples or xsd schema file. Optional. -->
18
+ <description></description>
19
+
20
+ <!-- Copyright information. Optional -->
21
+ <copyright></copyright>
22
+
23
+ <!-- Settings for the application's initial window. Required. -->
24
+ <initialWindow>
25
+ <!-- The main SWF or HTML file of the application. Required. -->
26
+ <!-- Note: In Flash Builder, the SWF reference is set automatically. -->
27
+ <content>app/views/index.html</content>
28
+
29
+ <!-- The title of the main window. Optional. -->
30
+ <!-- <title></title> -->
31
+
32
+ <!-- The type of system chrome to use (either "standard" or "none"). Optional. Default standard. -->
33
+ <!-- <systemChrome></systemChrome> -->
34
+
35
+ <!-- Whether the window is transparent. Only applicable when systemChrome is none. Optional. Default false. -->
36
+ <!-- <transparent></transparent> -->
37
+
38
+ <!-- Whether the window is initially visible. Optional. Default false. -->
39
+ <visible>true</visible>
40
+
41
+ <!-- Whether the user can minimize the window. Optional. Default true. -->
42
+ <!-- <minimizable></minimizable> -->
43
+
44
+ <!-- Whether the user can maximize the window. Optional. Default true. -->
45
+ <!-- <maximizable></maximizable> -->
46
+
47
+ <!-- Whether the user can resize the window. Optional. Default true. -->
48
+ <!-- <resizable></resizable> -->
49
+
50
+ <!-- The window's initial width. Optional. -->
51
+ <!-- <width></width> -->
52
+
53
+ <!-- The window's initial height. Optional. -->
54
+ <!-- <height></height> -->
55
+
56
+ <!-- The window's initial x position. Optional. -->
57
+ <!-- <x></x> -->
58
+
59
+ <!-- The window's initial y position. Optional. -->
60
+ <!-- <y></y> -->
61
+
62
+ <!-- The window's minimum size, specified as a width/height pair, such as "400 200". Optional. -->
63
+ <!-- <minSize></minSize> -->
64
+
65
+ <!-- The window's initial maximum size, specified as a width/height pair, such as "1600 1200". Optional. -->
66
+ <!-- <maxSize></maxSize> -->
67
+ </initialWindow>
68
+
69
+ <!-- The subpath of the standard default installation location to use. Optional. -->
70
+ <!-- <installFolder></installFolder> -->
71
+
72
+ <!-- The subpath of the Programs menu to use. (Ignored on operating systems without a Programs menu.) Optional. -->
73
+ <!-- <programMenuFolder></programMenuFolder> -->
74
+
75
+ <!-- The icon the system uses for the application. For at least one resolution,
76
+ specify the path to a PNG file included in the AIR package. Optional. -->
77
+ <icon>
78
+ <image16x16>app/assets/images/icons/16.png</image16x16>
79
+ <image32x32>app/assets/images/icons/32.png</image32x32>
80
+ <image48x48>app/assets/images/icons/48.png</image48x48>
81
+ <image128x128>app/assets/images/icons/128.png</image128x128>
82
+ </icon>
83
+
84
+ <!-- Whether the application handles the update when a user double-clicks an update version
85
+ of the AIR file (true), or the default AIR application installer handles the update (false).
86
+ Optional. Default false. -->
87
+ <!-- <customUpdateUI></customUpdateUI> -->
88
+
89
+ <!-- Whether the application can be launched when the user clicks a link in a web browser.
90
+ Optional. Default false. -->
91
+ <!-- <allowBrowserInvocation></allowBrowserInvocation> -->
92
+
93
+ <!-- Listing of file types for which the application can register. Optional. -->
94
+ <!-- <fileTypes> -->
95
+
96
+ <!-- Defines one file type. Optional. -->
97
+ <!-- <fileType> -->
98
+
99
+ <!-- The name that the system displays for the registered file type. Required. -->
100
+ <!-- <name></name> -->
101
+
102
+ <!-- The extension to register. Required. -->
103
+ <!-- <extension></extension> -->
104
+
105
+ <!-- The description of the file type. Optional. -->
106
+ <!-- <description></description> -->
107
+
108
+ <!-- The MIME content type. -->
109
+ <!-- <contentType></contentType> -->
110
+
111
+ <!-- The icon to display for the file type. Optional. -->
112
+ <!-- <icon>
113
+ <image16x16></image16x16>
114
+ <image32x32></image32x32>
115
+ <image48x48></image48x48>
116
+ <image128x128></image128x128>
117
+ </icon> -->
118
+
119
+ <!-- </fileType> -->
120
+ <!-- </fileTypes> -->
121
121
 
122
122
  </application>
data/moonwalkair.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{moonwalkair}
8
- s.version = "0.4.0"
8
+ s.version = "0.4.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Daniel Lopes"]
12
- s.date = %q{2010-01-10}
12
+ s.date = %q{2010-02-05}
13
13
  s.default_executable = %q{moonwalk}
14
14
  s.description = %q{Moonwalkair help you to start build your AIR app and make it walk in the right way. The gem let you start your development faster, creating the entire folder structure and many files that a AIR app depends}
15
15
  s.email = %q{danielvlopes@gmail.com}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: moonwalkair
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Lopes
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-01-10 00:00:00 -02:00
12
+ date: 2010-02-05 00:00:00 -02:00
13
13
  default_executable: moonwalk
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency