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.
- checksums.yaml +4 -4
- data/lib/motion-reveal.rb +5 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 446c4c344af1655bb3dbd39b6789242438517c06
|
|
4
|
+
data.tar.gz: 1cbf828f676a43dba8a9419ba3eb0e597dcc2ab1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bd0fa535c8986b59c5614839a649008b97e9d3d5746d3f7e896188e449ab6fa01957cb78b3fcd8c775d0453b0a5c63c17519e0f79a072edbe02e51c6a329663d
|
|
7
|
+
data.tar.gz: 0b47ef1da88757690253e6f411a4657c40e323d2956846611f55f440576e886e9f2f378f3fda4e3b87dd4feb75f28f494779ae0da678a6cdb06ffa849cd57bdb
|
data/lib/motion-reveal.rb
CHANGED
|
@@ -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
|
-
|
|
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:
|
|
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:
|
|
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.
|
|
39
|
+
rubygems_version: 2.4.6
|
|
40
40
|
signing_key:
|
|
41
41
|
specification_version: 4
|
|
42
42
|
summary: Use Reveal in RubyMotion apps
|