macgap 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/assets/MacGap.app/Contents/MacOS/MacGap +0 -0
- data/assets/MacGap.app/Contents/Resources/en.lproj/MainMenu.nib +0 -0
- data/assets/MacGap.app/Contents/Resources/en.lproj/Window.nib +0 -0
- data/assets/MacGap.app/Contents/Resources/public/index.html +1 -7
- data/macgap.gemspec +1 -1
- metadata +3 -4
- data/test/test.sh +0 -1
Binary file
|
Binary file
|
Binary file
|
@@ -26,13 +26,7 @@
|
|
26
26
|
<body>
|
27
27
|
|
28
28
|
<script type="text/javascript" charset="utf-8">
|
29
|
-
|
30
|
-
|
31
|
-
var lc = window.localStorage['blash'];
|
32
|
-
console.log(lc);
|
33
|
-
window.localStorage['blash'] = '1';
|
34
|
-
console.log(window.localStorage['blash']);
|
35
|
-
}, 500);
|
29
|
+
macgap.growl.notify({title: 'MacGap', content: 'Hello World'});
|
36
30
|
</script>
|
37
31
|
|
38
32
|
<h1>MacGap</h1>
|
data/macgap.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: macgap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-01-
|
12
|
+
date: 2012-01-21 00:00:00.000000000Z
|
13
13
|
dependencies: []
|
14
14
|
description: Command line utility for generating MacGap applications
|
15
15
|
email:
|
@@ -38,11 +38,11 @@ files:
|
|
38
38
|
- assets/MacGap.app/Contents/Resources/en.lproj/Credits.rtf
|
39
39
|
- assets/MacGap.app/Contents/Resources/en.lproj/InfoPlist.strings
|
40
40
|
- assets/MacGap.app/Contents/Resources/en.lproj/MainMenu.nib
|
41
|
+
- assets/MacGap.app/Contents/Resources/en.lproj/Window.nib
|
41
42
|
- assets/MacGap.app/Contents/Resources/public/index.html
|
42
43
|
- bin/macgap
|
43
44
|
- macgap.gemspec
|
44
45
|
- test/public/index.html
|
45
|
-
- test/test.sh
|
46
46
|
homepage: http://github.com/maccman/macgap-rb
|
47
47
|
licenses: []
|
48
48
|
post_install_message:
|
@@ -69,5 +69,4 @@ specification_version: 3
|
|
69
69
|
summary: Generate MacGap applications
|
70
70
|
test_files:
|
71
71
|
- test/public/index.html
|
72
|
-
- test/test.sh
|
73
72
|
has_rdoc:
|
data/test/test.sh
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
macgap ./public/ --name MyApp
|