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
{% case customer.locale %} | |
{% when 'fr' %} | |
Bienvenue! | |
{% when 'es' %} | |
¡Bienvenida! | |
{% when 'ru' %} | |
Добро пожаловат! | |
{% else %} | |
Welcome! | |
{% endcase %} |
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
npm install -g cordova | |
npm install -g plugman | |
npm install -g ios-sim | |
npm install -g ios-deploy | |
cd cordova/ | |
# Run the app in the emulator | |
cordova emulate ios |
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
gem install nokogiri -- --use-system-libraries=true --with-xml2-include=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk/usr/include/libxml2 |
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
npm install --save-dev ember-deploy-s3 | |
npm install --save-dev ember-deploy-s3-index |
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
{ | |
"firebase": "NAME", | |
"public": "dist", | |
"ignore": [ | |
"firebase.json", | |
"**/.*", | |
"**/node_modules/**" | |
], | |
"rewrites": [{ | |
"source": "**", |
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
npm cache clear && bower cache clean && rm -rf node_modules bower_components && npm install && bower install |
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
ember g resource entities name:string | |
ember g route entities/show | |
ember g route entities/index |
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
npm cache clear && rm -rf node_modules && npm install && npm test | |
npm uninstall -g ember-cli && npm link |
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
var Funnel = require('broccoli-funnel'); | |
app.import('bower_components/bootstrap-sass-official/assets/javascripts/bootstrap.js'); | |
var bootstrapAssets = new Funnel('bower_components/bootstrap-sass-official/assets/fonts/bootstrap', { | |
srcDir: '/', | |
files: ['**/*'], | |
destDir: '/fonts/bootstrap' | |
}); | |
module.exports = app.toTree(bootstrapAssets); |
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
R.player.on('change:position', $.proxy(this, 'positionChanged')); |
NewerOlder