indoctrinator 0.1.0 → 0.2.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/README.md +1 -11
- data/lib/indoctrinator.rb +6 -0
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d4a4dd66473134eeb86299a82f7d405add92ca45
|
|
4
|
+
data.tar.gz: b7bb4f7b7e2196ccafeb86a34bc0c5981c49e351
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7575da855a7d1248bf07271449c6ff735825099973d0d3777e593e6e34bc1517f26d4a125c1d66280dd9e7c61487883407c320adc5b91bbc08f17cd1136e3a76
|
|
7
|
+
data.tar.gz: b0920d5416839f58b328fb681062101d7ab3a3c14284e13ad967e9954c8b3e24d980c704cf0aa58ae9fdb59c3eb72f64b3026ca211872ebec7a383f5d18070ca
|
data/README.md
CHANGED
|
@@ -8,22 +8,12 @@ Indoctrinator is a RubyMotion gem that provides a Path style tutorial view for i
|
|
|
8
8
|
|
|
9
9
|
Add this line to your application's Gemfile:
|
|
10
10
|
|
|
11
|
-
gem
|
|
11
|
+
gem "indoctrinator"
|
|
12
12
|
|
|
13
13
|
And then execute:
|
|
14
14
|
|
|
15
15
|
$ bundle
|
|
16
16
|
|
|
17
|
-
### Rakefile
|
|
18
|
-
|
|
19
|
-
Currently there is a bug with [motion-cocoapods](https://github.com/HipByte/motion-cocoapods/issues/38) that doesn't allow us to automatically include an ObjC library automatically. Because of this, you will need to edit your Rakefile as follows:
|
|
20
|
-
|
|
21
|
-
```ruby
|
|
22
|
-
app.pods do
|
|
23
|
-
pod 'PKRevealController'
|
|
24
|
-
end
|
|
25
|
-
```
|
|
26
|
-
|
|
27
17
|
## Usage
|
|
28
18
|
|
|
29
19
|
```ruby
|
data/lib/indoctrinator.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
require 'motion-cocoapods'
|
|
2
|
+
|
|
1
3
|
unless defined?(Motion::Project::Config)
|
|
2
4
|
raise "This file must be required within a RubyMotion project Rakefile."
|
|
3
5
|
end
|
|
@@ -5,4 +7,8 @@ end
|
|
|
5
7
|
lib_dir_path = File.dirname(File.expand_path(__FILE__))
|
|
6
8
|
Motion::Project::App.setup do |app|
|
|
7
9
|
app.files.unshift(Dir.glob(File.join(lib_dir_path, "project/**/*.rb")))
|
|
10
|
+
|
|
11
|
+
app.pods do
|
|
12
|
+
pod 'ICETutorial'
|
|
13
|
+
end
|
|
8
14
|
end
|
metadata
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: indoctrinator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryan Linton
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2014-03-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: motion-cocoapods
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - ~>
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
19
|
+
version: '1.4'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- -
|
|
24
|
+
- - ~>
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
26
|
+
version: '1.4'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: rake
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -70,7 +70,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
70
70
|
version: '0'
|
|
71
71
|
requirements: []
|
|
72
72
|
rubyforge_project:
|
|
73
|
-
rubygems_version: 2.
|
|
73
|
+
rubygems_version: 2.1.11
|
|
74
74
|
signing_key:
|
|
75
75
|
specification_version: 4
|
|
76
76
|
summary: Provides a Path style tutorial view for RubyMotion apps.
|