motion-game 1.1.6 → 1.1.7
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.
- checksums.yaml +4 -4
- data/README.md +120 -0
- data/build/android/armeabi/libmotion-cocos.a +0 -0
- data/build/android/motion-cocos.jar +0 -0
- data/build/android/x86/libmotion-cocos.a +0 -0
- data/build/ios/libmotion-cocos.a +0 -0
- data/build/tvos/libmotion-cocos.a +0 -0
- data/doc/API_reference.rb +1407 -0
- data/doc/MG.html +1 -1
- data/doc/MG/Action.html +9 -9
- data/doc/MG/Animate.html +4 -4
- data/doc/MG/Application.html +5 -5
- data/doc/MG/Audio.html +391 -175
- data/doc/MG/Blink.html +3 -3
- data/doc/MG/Button.html +23 -23
- data/doc/MG/Color.html +19 -20
- data/doc/MG/DelayTime.html +3 -3
- data/doc/MG/Director.html +33 -33
- data/doc/MG/Draw.html +11 -11
- data/doc/MG/Events.html +1 -1
- data/doc/MG/Events/Acceleration.html +17 -17
- data/doc/MG/Events/Touch.html +5 -5
- data/doc/MG/FadeIn.html +3 -3
- data/doc/MG/FadeOut.html +3 -3
- data/doc/MG/FadeTo.html +3 -3
- data/doc/MG/File.html +3 -3
- data/doc/MG/Follow.html +3 -3
- data/doc/MG/JumpBy.html +3 -3
- data/doc/MG/JumpTo.html +3 -3
- data/doc/MG/Layout.html +15 -15
- data/doc/MG/List.html +21 -21
- data/doc/MG/Menu.html +9 -9
- data/doc/MG/MoveBy.html +3 -3
- data/doc/MG/MoveTo.html +3 -3
- data/doc/MG/Node.html +61 -61
- data/doc/MG/Parallax.html +3 -3
- data/doc/MG/Particle.html +47 -47
- data/doc/MG/Point.html +16 -18
- data/doc/MG/Repeat.html +3 -3
- data/doc/MG/RepeatForever.html +3 -3
- data/doc/MG/RotateBy.html +3 -3
- data/doc/MG/RotateTo.html +3 -3
- data/doc/MG/ScaleBy.html +3 -3
- data/doc/MG/ScaleTo.html +3 -3
- data/doc/MG/Scene.html +33 -33
- data/doc/MG/Scroll.html +15 -15
- data/doc/MG/Sequence.html +3 -3
- data/doc/MG/Size.html +19 -20
- data/doc/MG/SkewBy.html +3 -3
- data/doc/MG/SkewTo.html +3 -3
- data/doc/MG/Slider.html +7 -7
- data/doc/MG/Spawn.html +3 -3
- data/doc/MG/Speed.html +3 -3
- data/doc/MG/Sprite.html +189 -67
- data/doc/MG/Text.html +31 -31
- data/doc/MG/TintBy.html +3 -3
- data/doc/MG/TintTo.html +3 -3
- data/doc/MG/Web.html +15 -15
- data/doc/MG/Widget.html +15 -15
- data/doc/_index.html +1 -1
- data/doc/file.README.html +4 -2
- data/doc/index.html +4 -2
- data/doc/method_list.html +181 -141
- data/doc/top-level-namespace.html +1 -1
- data/lib/motion-game/android.rb +0 -1
- metadata +4 -2
@@ -102,7 +102,7 @@
|
|
102
102
|
</div>
|
103
103
|
|
104
104
|
<div id="footer">
|
105
|
-
Generated on Sun
|
105
|
+
Generated on Sun Dec 11 16:38:29 2016 by
|
106
106
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
107
107
|
0.9.5 (ruby-2.3.3).
|
108
108
|
</div>
|
data/lib/motion-game/android.rb
CHANGED
@@ -8,7 +8,6 @@ Motion::Project::App.setup do |app|
|
|
8
8
|
app.resources_dirs = []
|
9
9
|
app.files.concat(Dir.glob(File.join(File.dirname(__FILE__), 'android/*.rb')))
|
10
10
|
app.vendor_project :jar => File.join(File.dirname(__FILE__), '../../build/android/motion-cocos.jar')
|
11
|
-
app.archs = ['armv7', 'x86']
|
12
11
|
|
13
12
|
%w{armeabi x86}.each do |arch|
|
14
13
|
lib_arch = (arch == 'armeabi') ? 'armeabi-v7a' : 'x86'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: motion-game
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- HipByte
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-11
|
11
|
+
date: 2016-12-11 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: motion-game allows you to write cross-platform native mobile games in
|
14
14
|
Ruby.
|
@@ -17,6 +17,7 @@ executables: []
|
|
17
17
|
extensions: []
|
18
18
|
extra_rdoc_files: []
|
19
19
|
files:
|
20
|
+
- README.md
|
20
21
|
- build/android/armeabi/libchipmunk.a
|
21
22
|
- build/android/armeabi/libcrypto.a
|
22
23
|
- build/android/armeabi/libcurl.a
|
@@ -60,6 +61,7 @@ files:
|
|
60
61
|
- build/tvos/libssl.a
|
61
62
|
- build/tvos/libtiff.a
|
62
63
|
- build/tvos/libwebp.a
|
64
|
+
- doc/API_reference.rb
|
63
65
|
- doc/MG.html
|
64
66
|
- doc/MG/Action.html
|
65
67
|
- doc/MG/Animate.html
|