motion-hpple 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.
- data/README.md +8 -3
- data/lib/motion-hpple/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -13,16 +13,21 @@ Install motion-hpple:
|
|
13
13
|
|
14
14
|
gem install motion-hpple
|
15
15
|
|
16
|
-
|
17
16
|
Add following to your Rakefile:
|
18
17
|
|
19
18
|
```ruby
|
20
19
|
$:.unshift("/Library/RubyMotion/lib")
|
21
20
|
require 'motion/project'
|
22
|
-
require 'motion-
|
21
|
+
require 'motion-cocoapods'
|
22
|
+
require 'motion-tidy'
|
23
23
|
|
24
24
|
Motion::Project::App.setup do |app|
|
25
|
-
app.name = '
|
25
|
+
app.name = 'sample'
|
26
|
+
|
27
|
+
# Only needed if you have not already specifying pods dependency
|
28
|
+
app.pods do
|
29
|
+
dependency 'CTidy', '>= 0.2.0'
|
30
|
+
end
|
26
31
|
end
|
27
32
|
```
|
28
33
|
|
data/lib/motion-hpple/version.rb
CHANGED