motion-flow 0.1.3 → 0.1.4
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/flow/digest/cocoa/libdigest.a +0 -0
- data/flow/net/net.rb +3 -3
- data/flow/ui/android/armeabi-v7a/libcss_node.a +0 -0
- data/flow/ui/android/font.rb +2 -2
- data/flow/ui/android/x86/libcss_node.a +0 -0
- data/flow/ui/cocoa/font.rb +1 -1
- data/flow/ui/cocoa/libcss_node.a +0 -0
- data/flow/ui/font.rb +3 -2
- data/lib/motion-flow.rb +12 -3
- data/template/flow/files/config/android.rb.erb +6 -0
- data/template/flow/files/config/ios.rb.erb +6 -0
- data/template/flow/files/config/osx.rb.erb +6 -0
- metadata +3 -4
- data/flow/ui/android/armeabi/libcss_node.a +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 707ca8aea0f6a587026d263830de2ef35149a6a9
|
4
|
+
data.tar.gz: 7cfe35727ca401a0ecb98bb19aa0404284c7bfc5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25e4a52d2f54fcfccb84ac9e6a9f4e7baa01231755754a76ea5ef40cd90827b309dba2aa76adea757ab0c8e0edbd91cbf3738009e537729eace798e34e5d78e9
|
7
|
+
data.tar.gz: af6a0a591db19b2a5cf1f47421c7daccda532531726c838bfac7980e67f73802783f46ca452d674222b365f0142cd3f1cbbd591177aa4cffd7ecd12f9873ab42
|
Binary file
|
data/flow/net/net.rb
CHANGED
@@ -17,9 +17,9 @@ module Net
|
|
17
17
|
expectation
|
18
18
|
end
|
19
19
|
|
20
|
-
[:get, :post, :put, :delete, :patch, :options, :head].each do |
|
21
|
-
define_method(
|
22
|
-
Request.send(
|
20
|
+
[:get, :post, :put, :delete, :patch, :options, :head].each do |http_method|
|
21
|
+
define_method(http_method) do |base_url, *options, &callback|
|
22
|
+
Request.send(http_method, base_url, options.shift || {}, callback)
|
23
23
|
end
|
24
24
|
end
|
25
25
|
end
|
Binary file
|
data/flow/ui/android/font.rb
CHANGED
@@ -20,7 +20,7 @@ module UI
|
|
20
20
|
'CutiveMono' => 'serif-monospace'
|
21
21
|
}
|
22
22
|
|
23
|
-
def initialize(obj, size, trait=nil)
|
23
|
+
def initialize(obj, size, trait=nil, extension=:ttf)
|
24
24
|
if obj.is_a?(Android::Graphics::Typeface)
|
25
25
|
@proxy = obj
|
26
26
|
else
|
@@ -38,7 +38,7 @@ module UI
|
|
38
38
|
end
|
39
39
|
@proxy = Android::Graphics::Typeface.create(family_name, style)
|
40
40
|
else
|
41
|
-
@proxy = Android::Graphics::Typeface.createFromAsset(UI.context.getAssets, obj +
|
41
|
+
@proxy = Android::Graphics::Typeface.createFromAsset(UI.context.getAssets, obj + "." + extension.to_s)
|
42
42
|
end
|
43
43
|
end
|
44
44
|
@size = size
|
Binary file
|
data/flow/ui/cocoa/font.rb
CHANGED
data/flow/ui/cocoa/libcss_node.a
CHANGED
Binary file
|
data/flow/ui/font.rb
CHANGED
@@ -7,9 +7,10 @@ module UI
|
|
7
7
|
name = (font[:name] or raise ":name expected")
|
8
8
|
size = (font[:size] or raise ":size expected")
|
9
9
|
trait = (font[:trait] or :normal)
|
10
|
-
|
10
|
+
extension = (font[:extension] or :ttf)
|
11
|
+
UI::Font.new(name, size, trait, extension)
|
11
12
|
when Array
|
12
|
-
raise "Expected Array of 2 or 3 elements" if font.size < 2 or font.size >
|
13
|
+
raise "Expected Array of 2 or 3 or 4 elements" if font.size < 2 or font.size > 4
|
13
14
|
UI::Font.new(*font)
|
14
15
|
else
|
15
16
|
raise "Expected UI::Font or Hash or Array"
|
data/lib/motion-flow.rb
CHANGED
@@ -15,7 +15,7 @@ else
|
|
15
15
|
trace = Rake.application.options.trace == true
|
16
16
|
|
17
17
|
template = platform.to_s == 'android' ? 'android' : 'cocoa'
|
18
|
-
system "template=#{platform}
|
18
|
+
system "template=#{platform} rake -r \"#{File.dirname(__FILE__)}/#{template}.rb\" -f \"config/#{platform}.rb\" \"#{task}\" #{trace ? '--trace' : ''}" or exit 1
|
19
19
|
end
|
20
20
|
namespace 'ios' do
|
21
21
|
desc "Create an .ipa archive"
|
@@ -231,8 +231,17 @@ else
|
|
231
231
|
task "super_repl" do
|
232
232
|
require "readline"
|
233
233
|
|
234
|
-
|
235
|
-
|
234
|
+
cmd = %w{ rake }
|
235
|
+
ios_cmd = cmd + ['ios:simulator']
|
236
|
+
android_cmd = cmd + ['android:emulator:start']
|
237
|
+
|
238
|
+
if ENV.fetch("skip_build", nil)
|
239
|
+
ios_cmd << 'skip_build=1'
|
240
|
+
android_cmd << 'skip_build=1'
|
241
|
+
end
|
242
|
+
|
243
|
+
ios_io = IO.popen(ios_cmd.join(' '), 'w')
|
244
|
+
android_io = IO.popen(android_cmd.join(' '), 'w')
|
236
245
|
|
237
246
|
while expr = Readline.readline("> ", true)
|
238
247
|
ios_io.puts expr
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: motion-flow
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
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
|
+
date: 2016-08-12 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |-
|
14
14
|
motion-flow allows you to write cross-platform
|
@@ -54,7 +54,6 @@ files:
|
|
54
54
|
- flow/ui/android/alert.rb
|
55
55
|
- flow/ui/android/application.rb
|
56
56
|
- flow/ui/android/armeabi-v7a/libcss_node.a
|
57
|
-
- flow/ui/android/armeabi/libcss_node.a
|
58
57
|
- flow/ui/android/button.rb
|
59
58
|
- flow/ui/android/camera.rb
|
60
59
|
- flow/ui/android/color.rb
|
@@ -1123,7 +1122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1123
1122
|
version: '0'
|
1124
1123
|
requirements: []
|
1125
1124
|
rubyforge_project:
|
1126
|
-
rubygems_version: 2.
|
1125
|
+
rubygems_version: 2.5.1
|
1127
1126
|
signing_key:
|
1128
1127
|
specification_version: 4
|
1129
1128
|
summary: Cross-platform app framework for RubyMotion
|
Binary file
|