motion-reveal 1.0.0 → 2.0.0

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/motion-reveal.rb +5 -1
  3. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 87dc0f849b9472443f8898beda5562b79bcbd07a
4
- data.tar.gz: 491b5175052584a52caa66ee90ad526875ec7531
3
+ metadata.gz: 446c4c344af1655bb3dbd39b6789242438517c06
4
+ data.tar.gz: 1cbf828f676a43dba8a9419ba3eb0e597dcc2ab1
5
5
  SHA512:
6
- metadata.gz: 45724a35a35e769fd4526816e77f584997aad5fe00044c1ed777f8fa098bf126a944422e279222e7e9c4a0cb04c71d639fc70301f2cc6196c80357b0ea9d6b29
7
- data.tar.gz: 1b1cfba0c49a7ab4227aa63a598d32378938c2b7026039cd12006c9ea91e50fc70df04f6022193c4929344e9447eef7d67c2e9522a1f47931d0fa6681f96d6f3
6
+ metadata.gz: bd0fa535c8986b59c5614839a649008b97e9d3d5746d3f7e896188e449ab6fa01957cb78b3fcd8c775d0453b0a5c63c17519e0f79a072edbe02e51c6a329663d
7
+ data.tar.gz: 0b47ef1da88757690253e6f411a4657c40e323d2956846611f55f440576e886e9f2f378f3fda4e3b87dd4feb75f28f494779ae0da678a6cdb06ffa849cd57bdb
@@ -7,7 +7,11 @@ Motion::Project::App.setup do |app|
7
7
  if File.exist? ('/Applications/Reveal.app')
8
8
  # Fixes build issues with Reveal 1.5
9
9
  app.libs += ['/usr/lib/libz.dylib', '/usr/lib/libc++.dylib']
10
- app.vendor_project('/Applications/Reveal.app/Contents/SharedSupport/iOS-Libraries/Reveal.framework', :static, :products => ['Reveal'], :cflags => '-ObjC')
10
+ if File.exist?('/Applications/Reveal.app/Contents/SharedSupport/iOS-Libraries/RevealServer.framework') #Reveal 2.0
11
+ app.embedded_frameworks += ['/Applications/Reveal.app/Contents/SharedSupport/iOS-Libraries/RevealServer.framework']
12
+ else
13
+ app.vendor_project('/Applications/Reveal.app/Contents/SharedSupport/iOS-Libraries/Reveal.framework', :static, :products => ['Reveal'], :cflags => '-ObjC')
14
+ end
11
15
  app.frameworks << 'CFNetwork'
12
16
  app.frameworks << 'QuartzCore'
13
17
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: motion-reveal
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Diogo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-06-05 00:00:00.000000000 Z
11
+ date: 2016-09-21 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Just a simple gem to add the Reval framework to your RubyMotion project.
14
14
  email: diogo@regattapix.com
@@ -36,7 +36,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
36
36
  version: '0'
37
37
  requirements: []
38
38
  rubyforge_project:
39
- rubygems_version: 2.4.5
39
+ rubygems_version: 2.4.6
40
40
  signing_key:
41
41
  specification_version: 4
42
42
  summary: Use Reveal in RubyMotion apps