motion-yaml 1.5.3 → 1.5.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6512e321835f64058360482c8fc3cf272886b780
4
- data.tar.gz: becd3da3d0c357b20c3c7d00c4fd3285a9263571
3
+ metadata.gz: 9cc15a1819c7c3a10276c3fac2386295a6435963
4
+ data.tar.gz: 9fbc376f32081f870b735c9421ef9bd36e41a809
5
5
  SHA512:
6
- metadata.gz: 632e8eac99f16e3239dd597aa8dafa327cb3fcf0921a7b3a43ce4a82a64eaccc38145c65a86c1a0b477faf067cb9713efb1f8ea74aa583f664ac238ac96e0a3c
7
- data.tar.gz: 0470d3817872eb3343af8696c2454e0d828e1660471eec30b709930c5dc0e2ac2f1a10b28a44637ea9e64d1732c8f56d824ef22e587d0cb7a888a5bcb4d538cb
6
+ metadata.gz: 575ff8cf88d4d8edb4b5b02decd032142cf75d95339b95ee6b35b97c65586e989cafed73b774fd3fd8b344b3b717ce57965dff91fd539a3d7f569bca3f3b32ab
7
+ data.tar.gz: dbbca4f79c40be72e236d948f6e10fd5b1c7a83ac119154af2b3a9f9e3dc9f002c4a6bd8e679ef2f6ccdb7efaea0d2c4e09c8ea7d955422fae6a8295a9e18fa9
@@ -13,6 +13,7 @@
13
13
  FILE* fileInput;
14
14
  NSData *bufferInput;
15
15
  yaml_parser_t parser;
16
+ id scanner;
16
17
  }
17
18
 
18
19
  - (void)reset;
Binary file
Binary file
@@ -32,7 +32,7 @@ end
32
32
 
33
33
  lib_dir_path = File.dirname(File.expand_path(__FILE__))
34
34
  Motion::Project::App.setup do |app|
35
- app.files.concat(Dir.glob(File.join(lib_dir_path, "project/**/*.rb")))
35
+ app.files.insert(0, *Dir.glob(File.join(lib_dir_path, "project/**/*.rb")))
36
36
  case platform
37
37
  when /ios/
38
38
  app.vendor_project(File.join(lib_dir_path, "YAMLKit"), :static,
@@ -23,7 +23,7 @@
23
23
  # POSSIBILITY OF SUCH DAMAGE.
24
24
 
25
25
  # Special thanks to https://github.com/tenderlove/psych
26
- class YKParser
26
+ class YKScanner
27
27
  # http://yaml.org/type/timestamp.html
28
28
  TIME = /^-?\d{4}-\d{1,2}-\d{1,2}(?:[Tt]|\s+)\d{1,2}:\d\d:\d\d(?:\.\d*)?(?:\s*(?:Z|[-+]\d{1,2}:?(?:\d\d)?))?$/
29
29
 
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.5.3
4
+ version: 1.5.4
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-07-15 00:00:00.000000000 Z
12
+ date: 2015-08-15 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.
@@ -51,7 +51,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
51
51
  version: '0'
52
52
  requirements: []
53
53
  rubyforge_project:
54
- rubygems_version: 2.4.8
54
+ rubygems_version: 2.4.5
55
55
  signing_key:
56
56
  specification_version: 4
57
57
  summary: motion-yaml provides methods to access "YAML Ain't Markup Language" for RubyMotion