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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9db9003fa2b6e5374a915df205adb7b7f5a6df99
4
- data.tar.gz: 0bf25e1c6cce2e6edb59a3f307f14df2d69ee82e
3
+ metadata.gz: b9457c7b5f10061ea1c936f09649e5baeb67f74d
4
+ data.tar.gz: 006fb05b8319e534dc7f15110944c4255021df1d
5
5
  SHA512:
6
- metadata.gz: 3299d238563aa186c87671ca27ba18b58d3561b52d4c4d2719a1dbbd9e46f97e00116b9e3b073c0d0807e74c0bbfee3988df29293d5af52b3bcfb4b90aeabd0e
7
- data.tar.gz: cabc8a3717bb7261d76a1f8fd58c0240e206554aa7367a01e6cb69adb1e4b33b43c2fbf049008b6675084bbd3a014abaadda14205432c33a802c6d1ef0ea6efe
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, BubbleWrap and ProMotion.
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 < ProMotion::AppDelegateParent
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
@@ -1,3 +1,3 @@
1
1
  module ProMotionSlideMenu
2
- VERSION = '0.2.0'
2
+ VERSION = '0.2.1'
3
3
  end
@@ -1,7 +1,7 @@
1
1
  describe ProMotionSlideMenu::AppDelegate do
2
2
 
3
3
  before do
4
- @delegate = App.delegate
4
+ @delegate = UIApplication.sharedApplication.delegate
5
5
  end
6
6
 
7
7
  it "should have a 'slide_menu' attribute" do
@@ -1,7 +1,7 @@
1
1
  describe ProMotionSlideMenu::SlideMenuScreen do
2
2
 
3
3
  before do
4
- @delegate = App.delegate
4
+ @delegate = UIApplication.sharedApplication.delegate
5
5
  @left = LeftNavScreen.new
6
6
  @right = RightNavScreen.new
7
7
  @content = BlankScreen.new
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.0
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-01-16 00:00:00.000000000 Z
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.0.rc.1
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.