Speakerdecks by employees of awesome companies.
Please fork & update if you have more :)
| --- | |
| :query: | |
| :boosting: | |
| :positive: | |
| :filtered: | |
| :query: | |
| :bool: | |
| :should: | |
| - :text: | |
| :name: |
Speakerdecks by employees of awesome companies.
Please fork & update if you have more :)
#Mac OS X
| source "https://rubygems.org" | |
| gem 'sugarcube' | |
| gem 'motion-cocoapods', :git => 'https://github.com/HipByte/motion-cocoapods.git' # 1.1.4 seems broken |
| #!/usr/bin/env bash | |
| apt-get -y update | |
| apt-get -y install build-essential zlib1g-dev libssl-dev libreadline6-dev libyaml-dev make | |
| cd /tmp | |
| wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p327.tar.gz | |
| tar -xvzf ruby-1.9.3-p327.tar.gz | |
| cd ruby-1.9.3-p327/ | |
| ./configure --prefix=/usr/local | |
| make | |
| make install |
| # Copyright (c) 2012, HipByte SPRL and contributors | |
| # All rights reserved. | |
| # | |
| # Redistribution and use in source and binary forms, with or without | |
| # modification, are permitted provided that the following conditions are met: | |
| # | |
| # 1. Redistributions of source code must retain the above copyright notice, this | |
| # list of conditions and the following disclaimer. | |
| # 2. Redistributions in binary form must reproduce the above copyright notice, | |
| # this list of conditions and the following disclaimer in the documentation |
| import Controller from '@ember/controller'; | |
| import { tracked } from '@glimmer/tracking'; | |
| export default class ApplicationController extends Controller { | |
| appName = 'Ember Twiddle'; | |
| @tracked reply = 'default'; | |
| } |