motion-yaml 1.3 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e733fbc23e184cc50ca125082b3eb0dcfdd42f37
4
- data.tar.gz: fdf5c1923e9a172cbfd4b459606bc57fc6d58421
3
+ metadata.gz: eaa1112fa7461f9a15b4dcb8516be4c0b07f7b3b
4
+ data.tar.gz: 450a8c5ae23e5574ca8b1b3b5c974ded72d29d0b
5
5
  SHA512:
6
- metadata.gz: 7bd73505e59a55ff2a13ddcb073f0a5f08775f244437f0aa13ef5728e0f7a3b6c3693a75040a71a969ffdfc4b681df09cd15b5b622c5c69907beded71b660d6b
7
- data.tar.gz: 5bff3ed38fbca4c37c14f11cb47605525ed01477f9a029b5d7e602ecf589dda7193622f87334239670b919676c01935de6ff82a149b1d62ff29e8115d822df9a
6
+ metadata.gz: 219fe385067d85407b33f362f1f9160db847a66c744693b136ece0ba39afe5769a0febfcd96b12601276a0115aa0944602a603dea346ec8fdfb277c9715547c6
7
+ data.tar.gz: 5b179dc8ddc1416ac4ca85ea7271261bda6de32da745eda1009f1df22a4c7e173913bdc7e9ca5d5a0dd550b80f8c66976985dcd2c86329d1dc27aeeeb897aa17
Binary file
Binary file
data/lib/motion-yaml.rb CHANGED
@@ -34,11 +34,13 @@ lib_dir_path = File.dirname(File.expand_path(__FILE__))
34
34
  Motion::Project::App.setup do |app|
35
35
  app.files.concat(Dir.glob(File.join(lib_dir_path, "project/**/*.rb")))
36
36
  case platform
37
- when :ios
37
+ when /ios/
38
38
  app.vendor_project(File.join(lib_dir_path, "YAMLKit"), :static,
39
39
  :products => ["libYAMLKit_iOS.a"])
40
40
  when :osx
41
41
  app.vendor_project(File.join(lib_dir_path, "YAMLKit"), :static,
42
42
  :products => ["libYAMLKit_OSX.a"])
43
+ else
44
+ raise "Unknown platform"
43
45
  end
44
46
  end
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.3'
4
+ version: '1.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: 2014-11-07 00:00:00.000000000 Z
12
+ date: 2014-12-20 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.
@@ -50,7 +50,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
50
50
  version: '0'
51
51
  requirements: []
52
52
  rubyforge_project:
53
- rubygems_version: 2.2.2
53
+ rubygems_version: 2.4.5
54
54
  signing_key:
55
55
  specification_version: 4
56
56
  summary: motion-yaml provides methods to access "YAML Ain't Markup Language" for RubyMotion