This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cd my_first_rm_app | |
$ bundle exec rake | |
Build ./build/iPhoneSimulator-9.2-Development | |
Compile ./app/app_delegate.rb | |
Create ./build/iPhoneSimulator-9.2-Development/my_test_app.app | |
Link ./build/iPhoneSimulator-9.2-Development/my_test_app.app/my_test_app | |
...... | |
Simulate ./build/iPhoneSimulator-9.2-Development/my_first_rm_app.app | |
*** Starting simulator | |
(nil)? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
my_first_rm_app/ | |
├── Gemfile | |
├── Rakefile | |
├── app | |
│ └── app_delegate.rb | |
├── resources | |
│ ├── [email protected] | |
│ ├── [email protected] | |
│ └── [email protected] | |
└── spec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ motion create my_first_rm_app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ motion create | |
Usage: | |
$ motion create APP-NAME | |
Create a new RubyMotion project from one of the following templates: android, gem, ios (default), ios-action-extension, ios-custom-keyboard, ios-document-picker, ios-file-provider, ios-framework, ios-photo-editing, ios-share-extension, ios-today-extension, ios-watch-app, ios-watch-extension, osx, tvos, redpotion-template. | |
Options: | |
--template=[NAME|URL] A built-in template or from a file/git URL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ motion --version | |
4.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
var camelize = Ember.String.camelize; | |
export default Ember.Mixin.create({ | |
// The following is mostly identical to the JSONAPISerializer implementation, | |
// with the exception of adding an attributes key to the payload. | |
// https://github.com/emberjs/data/blob/v2.5.2/addon/serializers/json-api.js#L471 | |
serializeHasMany(snapshot, json, relationship) { | |
var key = relationship.key; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
actions: { | |
itemSelected(item) { | |
console.log("itemSelected", item); | |
this.get("itemCallback")(item); | |
} | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>Upload Documents</h1> | |
<form action="/documents" enctype="multipart/form-data" id="fileupload" method="post"> | |
<input type="file" name="document[attachment][]" multiple="multiple"> | |
<table> | |
<tbody id="files" class="files"></tbody> | |
</table> | |
</form> | |
<!-- jQuery 1.8.3 already included --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
feature "Search for Models" do | |
let(:my_model){ FactoryGirl.create(:my_fancy_model) } | |
before do | |
ThinkingSphinx::Test.index | |
end | |
scenario "A user searches for models by title" do | |
visit "/models" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Feature: Widget Management | |
Background: | |
Given I am logged in as a user | |
Scenario: Creating a new widget | |
When I create a widget | |
Then I should see "Widget was successfully created." |