Merge branch 'master' into version-0.5

This commit is contained in:
Jamon Holmgren
2013-03-19 14:36:40 -07:00
6 changed files with 35 additions and 5 deletions

View File

@@ -3,3 +3,5 @@ source 'https://rubygems.org'
# Specify your gem's dependencies in ProMotion.gemspec
gemspec
# Use this in development
gem "motion-stump"

View File

@@ -1,14 +1,16 @@
PATH
remote: .
specs:
ProMotion (0.4.0)
ProMotion (0.5.1)
GEM
remote: http://rubygems.org/
remote: https://rubygems.org/
specs:
motion-stump (0.2.0)
PLATFORMS
ruby
DEPENDENCIES
ProMotion!
motion-stump

View File

@@ -36,13 +36,18 @@ Video tutorial with 0.4.
http://www.clearsightstudio.com/insights/tutorial-make-youtube-video-app-rubymotion-promotion/
### Sample apps
### Sample Apps
Sample app here: https://github.com/jamonholmgren/promotion-tutorial
#### ProMotion Tutorial
Sample app here: [https://github.com/jamonholmgren/promotion-tutorial](https://github.com/jamonholmgren/promotion-tutorial)
Also, check out the free [BigDay! Reminder app](https://itunes.apple.com/us/app/bigday!/id571756685?ls=1&mt=8) on the
#### BigDay! Reminder App
Check out the free [BigDay! Reminder app](https://itunes.apple.com/us/app/bigday!/id571756685?ls=1&mt=8) on the
App Store to see what's possible. ClearSight Studio built the app for Kijome Software, a small app investment company.
#### TipCounter App
[TipCounter](http://www.tipcounterapp.com) was built by [Matt Brewer](https://github.com/macfanatic/) for bartenders and servers to easily track their tips. Used ProMotion and the development was a lot of fun!
## Getting Started
ProMotion is designed to be as intuitive and Ruby-like as possible. For example, here is a
@@ -782,3 +787,12 @@ If you need help, feel free to ping me on twitter @jamonholmgren or email jamon@
## Contributing
I'm really looking for feedback. Tweet me with your ideas or open a ticket (I don't mind!) and let's discuss.
### Submitting a Pull Request
1. Fork the project
2. Create a feature branch
3. Code
4. Update or create new specs
5. Make sure tests are passing by running `rake spec`
6. Submit pull request

5
app/app_delegate.rb Normal file
View File

@@ -0,0 +1,5 @@
class AppDelegate
def application(application, didFinishLaunchingWithOptions:launchOptions)
return true if RUBYMOTION_ENV == 'test'
end
end

0
spec/helpers/.gitkeep Normal file
View File

7
spec/main_spec.rb Normal file
View File

@@ -0,0 +1,7 @@
describe "pro motion module" do
it "should have 'PM' module" do
should.not.raise(NameError) { PM }
end
end