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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -11
  3. data/lib/indoctrinator.rb +6 -0
  4. metadata +7 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b4ab1b1d3a40ecdb8cc54232407175592b030be1
4
- data.tar.gz: c11a5a7f80c416e911874625e9a12d782afe796f
3
+ metadata.gz: d4a4dd66473134eeb86299a82f7d405add92ca45
4
+ data.tar.gz: b7bb4f7b7e2196ccafeb86a34bc0c5981c49e351
5
5
  SHA512:
6
- metadata.gz: 10f94eac332dd3f97ef989dc25fef7a187a6f53720867d31a210e35e59464ac1e21b3de349d0361df9a4b66ab96ca46cb7ef95a5a02e91625ff88a1f2e452157
7
- data.tar.gz: 2f6eed3a488a85c03a47f854ce837c49fde1b0e106895532c559c1659911bfa846c199c2c4df11958aa9886382a75c5de348b2966016eafe90c56d28ab726d73
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 'indoctrinator'
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.1.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: 2013-09-28 00:00:00.000000000 Z
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: '0'
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: '0'
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.0.6
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.