motion-egg 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +57 -0
- data/lib/{motion_egg.rb → motion-egg.rb} +2 -5
- data/lib/{motion_egg → motion-egg}/egg.rb +0 -0
- data/lib/{motion_egg → motion-egg}/uiwindow.rb +0 -0
- data/lib/motion-egg/version.rb +3 -0
- metadata +6 -5
- data/lib/motion_egg/version.rb +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 654a052bf3b193832af853757bad0ae8ab589be9
|
4
|
+
data.tar.gz: 01eb1fca02ec8d168137f061cd660bd65f4ace19
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9eb09618490543229198dad9aa596cab7e29b170f641d0f394b3a92e6cb6e358bb80b67c895117c9169bfc4661011aff299bd6be5634bd9dc363a75a59059c51
|
7
|
+
data.tar.gz: 5107e18877b15e6fe2304bc7c95df6d9963b27dc57725e71f39c2eaca910b277d2abba81aa5992cbf2e525d89652b3731540f46c9134c1fcebbf219200970e56
|
data/README.md
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
![motion-egg-explain](./_art/motion-egg-explain.png)
|
2
|
+
|
3
|
+
## Wat?
|
4
|
+
|
5
|
+
This gem allows you hide a small bit of fun in any of your serious apps.
|
6
|
+
* Have a girl to impress?
|
7
|
+
* Want to feature some of your good friends in apps that they have no business being in?
|
8
|
+
* Need to add your flair to a product?
|
9
|
+
|
10
|
+
**Have all the fun, without writing any of the code.**
|
11
|
+
|
12
|
+
![screen-demo](./_art/motion-egg-screen.gif)
|
13
|
+
|
14
|
+
## Usage
|
15
|
+
|
16
|
+
Once the gem is included, call `add_egg` on the `UIWindow` created in `app_delegate.rb`
|
17
|
+
|
18
|
+
```ruby
|
19
|
+
# This will add the an easter egg with all defaults
|
20
|
+
@window.add_egg
|
21
|
+
|
22
|
+
# This will add an easter egg with options
|
23
|
+
@window.add_egg(number_touches: 2, image_file: "taco.png")
|
24
|
+
```
|
25
|
+
|
26
|
+
The customizable options and defaults are:
|
27
|
+
* **secret_code:** An array of UISwipeGestureRecognizer constants.
|
28
|
+
* Default value `[
|
29
|
+
UISwipeGestureRecognizerDirectionUp, UISwipeGestureRecognizerDirectionUp,
|
30
|
+
UISwipeGestureRecognizerDirectionDown, UISwipeGestureRecognizerDirectionDown,
|
31
|
+
UISwipeGestureRecognizerDirectionLeft, UISwipeGestureRecognizerDirectionRight,
|
32
|
+
UISwipeGestureRecognizerDirectionLeft, UISwipeGestureRecognizerDirectionRight
|
33
|
+
]`
|
34
|
+
* **number_touches** Integer of how many touches are required when entering the code.
|
35
|
+
* Default value `1`
|
36
|
+
* **image_file** The string array of the image resource for the Easter egg.
|
37
|
+
* Default value `toasty.png`
|
38
|
+
|
39
|
+
|
40
|
+
## Installation
|
41
|
+
|
42
|
+
> 1. `gem install motion-egg`
|
43
|
+
|
44
|
+
OR
|
45
|
+
|
46
|
+
> 2. Add `gem 'motion-egg'` to your `Gemfile` and then bundle
|
47
|
+
|
48
|
+
## Pull Requests
|
49
|
+
|
50
|
+
It would be really cool if you can think of ways to improve this gem, but keep it small and unintrusive!
|
51
|
+
|
52
|
+
## Roadmap/Features - PRs welcome
|
53
|
+
|
54
|
+
* Hoping to eventually add sound
|
55
|
+
* Hoping to add alternate animations
|
56
|
+
* Hoping to make the egg more configurable
|
57
|
+
* Hoping to possibly show an interactive view, and not just an image
|
@@ -1,12 +1,9 @@
|
|
1
|
-
require "motion_egg/version"
|
2
|
-
|
3
1
|
unless defined?(Motion::Project::Config)
|
4
2
|
raise "This file must be required within a RubyMotion project Rakefile."
|
5
3
|
end
|
6
4
|
|
5
|
+
lib_dir_path = File.dirname(File.expand_path(__FILE__))
|
7
6
|
Motion::Project::App.setup do |app|
|
8
|
-
Dir.glob(File.join(
|
9
|
-
app.files.unshift(file)
|
10
|
-
end
|
7
|
+
app.files.unshift(Dir.glob(File.join(lib_dir_path, "motion-egg/**/*.rb")))
|
11
8
|
#app.frameworks += ["Twitter", "Accounts"]
|
12
9
|
end
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: motion-egg
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gant Laborde
|
@@ -31,10 +31,11 @@ executables: []
|
|
31
31
|
extensions: []
|
32
32
|
extra_rdoc_files: []
|
33
33
|
files:
|
34
|
-
-
|
35
|
-
- lib/
|
36
|
-
- lib/
|
37
|
-
- lib/
|
34
|
+
- README.md
|
35
|
+
- lib/motion-egg/egg.rb
|
36
|
+
- lib/motion-egg/uiwindow.rb
|
37
|
+
- lib/motion-egg/version.rb
|
38
|
+
- lib/motion-egg.rb
|
38
39
|
homepage: https://github.com/GantMan/motion-egg
|
39
40
|
licenses:
|
40
41
|
- MIT
|
data/lib/motion_egg/version.rb
DELETED