redpotion 0.1 → 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 +30 -2
- metadata +9 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 01e5682937ae39dbff0ee33e20006756691d65fb
|
4
|
+
data.tar.gz: 5d759993203dc7ad1db4c992205bda373e885861
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0970f31a446f0643fd63f029eab3a5355bc153d11f622580e1b60f83732f2ccdb1a8e71d3b9b883e9172f49f7dc20b342408e6aaec030f155cabab21f5bd540b
|
7
|
+
data.tar.gz: 283ab5dbaa28690c1e75b00bb5750b71a699b90b6301613f59b1a4d8b5e31a89958bbf266e4a821d790efbbb60847f7cb581f53c2131a9ae19682c34c3ea0ce2
|
data/README.md
CHANGED
@@ -1,9 +1,37 @@
|
|
1
|
-
#
|
1
|
+
# RedPotion
|
2
|
+
|
3
|
+
RedPotion combines [RMQ](http://rubymotionquery.com/), [ProMotion](https://github.com/clearsightstudio/ProMotion), [CDQ](https://github.com/infinitered/cdq), [AFMotion](https://github.com/clayallsopp/afmotion), and other libraries. It also adds new features to better integrate RMQ with ProMotion.
|
4
|
+
|
5
|
+
Its goals are to choose standard libraries and promote best practices, allowing you to developed iOS apps in record time.
|
6
|
+
|
7
|
+
The **makers of RMQ** at [InfiniteRed](http://infinitered.com/) and the **creators of ProMotion** at [ClearSight Studio](https://clearsightstudio.com/) have teamed up to create the ultimate RubyMotion library.
|
8
|
+
|
9
|
+
[![image](https://ir_wp.s3.amazonaws.com/wp-content/uploads/sites/11/2013/08/InfiniteRed_logo_100h.png)](http://infinitered.com/)
|
10
|
+
|
11
|
+
[![image](https://clearsightstudio.com/assets/images/clearsight-logos/color-logo@2x-458a9655.png)](https://clearsightstudio.com/)
|
12
|
+
|
13
|
+
ProMotion for screens and RMQ for styles, animations, traversing, events, etc.
|
14
|
+
|
15
|
+
## Quick start
|
16
|
+
|
17
|
+
```
|
18
|
+
gem install red_potion
|
19
|
+
|
20
|
+
potion create my_app
|
21
|
+
bundle
|
22
|
+
rake pod:install
|
23
|
+
potion create model state
|
24
|
+
potion create table_screen states
|
25
|
+
# a few changes
|
26
|
+
rake
|
27
|
+
```
|
28
|
+
|
29
|
+
![image](https://camo.githubusercontent.com/fa0ac0a77e6170cca72f03f9ad2273c5b165e83d/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313437393231352f313533343331372f35613134656632382d346339332d313165332d386539652d6638633038643834363466382e706e67)
|
2
30
|
|
3
31
|
## Contributing
|
4
32
|
|
5
33
|
1. Fork it
|
6
|
-
2. Create your feature branch (`git
|
34
|
+
2. Create your feature branch (`git checkoutut -b my-new-feature`)
|
7
35
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
8
36
|
4. Push to the branch (`git push origin my-new-feature`)
|
9
37
|
5. Create new Pull Request
|
metadata
CHANGED
@@ -1,14 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: redpotion
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '0.
|
4
|
+
version: '0.2'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- InfiniteRed
|
8
|
+
- ClearSight Studio
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date: 2014-11-
|
12
|
+
date: 2014-11-16 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: ruby_motion_query
|
@@ -94,9 +95,10 @@ dependencies:
|
|
94
95
|
- - ">="
|
95
96
|
- !ruby/object:Gem::Version
|
96
97
|
version: '0'
|
97
|
-
description:
|
98
|
+
description: RedPotion - The best combination of RubyMotion tools and libraries
|
98
99
|
email:
|
99
|
-
-
|
100
|
+
- hello@infinitered.com
|
101
|
+
- hello@clearsightstudio.com
|
100
102
|
executables: []
|
101
103
|
extensions: []
|
102
104
|
extra_rdoc_files: []
|
@@ -127,5 +129,6 @@ rubyforge_project:
|
|
127
129
|
rubygems_version: 2.2.2
|
128
130
|
signing_key:
|
129
131
|
specification_version: 4
|
130
|
-
summary: RedPotion
|
132
|
+
summary: RedPotion combines RMQ, ProMotion, CDQ, AFMotion, and more for the perfect
|
133
|
+
mix to develop in RubyMotion fast
|
131
134
|
test_files: []
|