pro_motion_slide_menu 0.2.0 → 0.2.1
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/README.md +2 -2
- data/lib/pro_motion_slide_menu.rb +1 -2
- data/lib/pro_motion_slide_menu/version.rb +1 -1
- data/spec/app_delegate_spec.rb +1 -1
- data/spec/slide_menu_screen_spec.rb +1 -1
- metadata +3 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b9457c7b5f10061ea1c936f09649e5baeb67f74d
|
4
|
+
data.tar.gz: 006fb05b8319e534dc7f15110944c4255021df1d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54fb4dbc4302e5dcb23a52066008cca53d37d8fe1c5ffe3038a380b54537b3623699c02ea8e550e62eecf702666ddf27452b181017e522a5c68c21b8f2e2dc52
|
7
|
+
data.tar.gz: 5bc17f79e887c8fa6ecf316141096b49036b14e8e989aa0d2d33e47e2504b5eccc2a5324ca8096f08427b866a510aab6926e31a49da7e7903dddb16b3b93290b
|
data/README.md
CHANGED
@@ -20,7 +20,7 @@ bundle install
|
|
20
20
|
```
|
21
21
|
|
22
22
|
### Dependenices
|
23
|
-
This depends on motion-cocoapods
|
23
|
+
This depends on motion-cocoapods and ProMotion.
|
24
24
|
|
25
25
|
### Rakefile
|
26
26
|
|
@@ -30,7 +30,7 @@ As of [motion-cocoapods](https://github.com/HipByte/motion-cocoapods/compare/1.3
|
|
30
30
|
To create a slide menu in your application, you need to start in your AppDelegate:
|
31
31
|
|
32
32
|
```ruby
|
33
|
-
class AppDelegate <
|
33
|
+
class AppDelegate < PM::Delegate
|
34
34
|
|
35
35
|
def on_load(app, options)
|
36
36
|
|
@@ -1,5 +1,4 @@
|
|
1
1
|
require 'motion-cocoapods'
|
2
|
-
require 'bubble-wrap'
|
3
2
|
require 'ProMotion'
|
4
3
|
|
5
4
|
unless defined?(Motion::Project::Config)
|
@@ -12,7 +11,7 @@ Motion::Project::App.setup do |app|
|
|
12
11
|
# WE ADD THESE AT THE END OF THE FILE LISTING!
|
13
12
|
# This way, we can be sure that ProMotion itself has been compiled, but before any of the app's files are compiled.
|
14
13
|
Dir.glob(File.join(File.dirname(__FILE__), 'pro_motion_slide_menu/**/*.rb')).each do |file|
|
15
|
-
app.files << file
|
14
|
+
app.files << file
|
16
15
|
end
|
17
16
|
|
18
17
|
# We have a cocoapod that we rely on
|
data/spec/app_delegate_spec.rb
CHANGED
metadata
CHANGED
@@ -1,29 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pro_motion_slide_menu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Brewer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-03-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: bubble-wrap
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - ">="
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '0'
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - ">="
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: '0'
|
27
13
|
- !ruby/object:Gem::Dependency
|
28
14
|
name: motion-cocoapods
|
29
15
|
requirement: !ruby/object:Gem::Requirement
|
@@ -117,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
117
103
|
version: '0'
|
118
104
|
requirements: []
|
119
105
|
rubyforge_project:
|
120
|
-
rubygems_version: 2.2.
|
106
|
+
rubygems_version: 2.2.2
|
121
107
|
signing_key:
|
122
108
|
specification_version: 4
|
123
109
|
summary: Provides a facebook/Path style slide menu for ProMotion RubyMotion apps.
|