motion-yaml 1.5.6 → 1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/YAMLKit/libYAMLKit_OSX.a +0 -0
- data/lib/YAMLKit/libYAMLKit_iOS.a +0 -0
- data/lib/YAMLKit/libYAMLKit_tvOS.a +0 -0
- data/lib/motion-yaml.rb +3 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5f48027cb7cf8b3218ba0fc63f56c0bfa86c23d5
|
4
|
+
data.tar.gz: f633977f9c289bb2c298b1dde6115d28cf006332
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f73ed73b517bda3f57a13a1f7493bd4e77a5bf45a74fd1ddf43c5569b52916958216ef80888d0ca984029e01b0b074c7ca120df5723a351b70483bc1c2856f79
|
7
|
+
data.tar.gz: cd1aff7a239758ea4b3c3c150d274b26efe97470f3ea59a1bfc7f4a6984397c4cbc276c49852c326e3c0247d5301fbd1e0f5e7d4d36f7026dee34925f5edfb58
|
Binary file
|
Binary file
|
Binary file
|
data/lib/motion-yaml.rb
CHANGED
@@ -39,6 +39,9 @@ Motion::Project::App.setup do |app|
|
|
39
39
|
when /ios/
|
40
40
|
app.vendor_project(File.join(lib_dir_path, "YAMLKit"), :static,
|
41
41
|
:products => ["libYAMLKit_iOS.a"])
|
42
|
+
when :tvos
|
43
|
+
app.vendor_project(File.join(lib_dir_path, "YAMLKit"), :static,
|
44
|
+
:products => ["libYAMLKit_tvOS.a"])
|
42
45
|
when :osx
|
43
46
|
app.vendor_project(File.join(lib_dir_path, "YAMLKit"), :static,
|
44
47
|
:products => ["libYAMLKit_OSX.a"])
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: motion-yaml
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: '1.6'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Laurent Sansonetti
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-10
|
12
|
+
date: 2015-11-10 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: motion-yaml provides methods to access "YAML Ain't Markup Language" for
|
15
15
|
RubyMotion projects.
|
@@ -28,6 +28,7 @@ files:
|
|
28
28
|
- lib/YAMLKit/YKParser.h
|
29
29
|
- lib/YAMLKit/libYAMLKit_OSX.a
|
30
30
|
- lib/YAMLKit/libYAMLKit_iOS.a
|
31
|
+
- lib/YAMLKit/libYAMLKit_tvOS.a
|
31
32
|
- lib/motion-yaml.rb
|
32
33
|
- lib/project/scanner.rb
|
33
34
|
- lib/project/yaml.rb
|
@@ -57,3 +58,4 @@ specification_version: 4
|
|
57
58
|
summary: motion-yaml provides methods to access "YAML Ain't Markup Language" for RubyMotion
|
58
59
|
projects.
|
59
60
|
test_files: []
|
61
|
+
has_rdoc:
|