pro_motion_slide_menu 0.0.2 → 0.0.3
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.
- data/.travis.yml +1 -0
- data/README.md +2 -0
- data/lib/pro_motion_slide_menu/version.rb +1 -1
- data/lib/pro_motion_slide_menu.rb +4 -0
- data/pro_motion_slide_menu.gemspec +1 -1
- metadata +3 -3
data/.travis.yml
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
language: objective-c
|
data/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# ProMotion SlideMenu
|
|
2
2
|
This gem provides an easier way to integrate a great open source toolkit, [RubyMotion](http://www.rubymotion.com), with another great Objective-C framework, [PKRevealController](https://github.com/pkluz/PKRevealController), allowing you to easily have a cool facebook or Path style slide navigation menu, complete with gestures.
|
|
3
3
|
|
|
4
|
+

|
|
5
|
+
|
|
4
6
|
## Installation
|
|
5
7
|
|
|
6
8
|
### Bundler
|
|
@@ -2,7 +2,7 @@ require File.expand_path('../lib/pro_motion_slide_menu/version.rb', __FILE__)
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'pro_motion_slide_menu'
|
|
5
|
-
s.version = ProMotionSlideMenu::
|
|
5
|
+
s.version = ProMotionSlideMenu::VERSION
|
|
6
6
|
s.authors = ["Matt Brewer"]
|
|
7
7
|
s.email = 'matt.brewer@me.com'
|
|
8
8
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pro_motion_slide_menu
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-05-20 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bubble-wrap
|
|
@@ -83,6 +83,7 @@ extensions: []
|
|
|
83
83
|
extra_rdoc_files: []
|
|
84
84
|
files:
|
|
85
85
|
- .gitignore
|
|
86
|
+
- .travis.yml
|
|
86
87
|
- Gemfile
|
|
87
88
|
- Gemfile.lock
|
|
88
89
|
- README.md
|
|
@@ -128,4 +129,3 @@ test_files:
|
|
|
128
129
|
- spec/helpers/blank_screen.rb
|
|
129
130
|
- spec/helpers/left_nav_screen.rb
|
|
130
131
|
- spec/slide_menu_screen_spec.rb
|
|
131
|
-
has_rdoc:
|