Skip to content

Instantly share code, notes, and snippets.

View leondmello's full-sized avatar

Leon Dmello leondmello

  • Bloomberg L.P.
  • New York
View GitHub Profile
import Ember from 'ember';
import { computed } from '@ember/object';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
color: 'none',
isGreen: computed('', function() {
return this.get('color') === 'green';
}),
isGreenCorrect: computed('color', function() {
@leondmello
leondmello / Gemfile
Last active June 22, 2020 17:45
Bundler unable to find native extension gems in ./vendor/bundle
gem 'capistrano', '3.5.0'
gem 'capistrano-bundler', '~> 1.2.0'
gem 'capistrano-rails', '~> 1.2.2'
gem 'capistrano-scm-copy', '0.7.0'
gem 'capistrano3-puma', '1.2.1'
gem 'puma', '~> 3.7'
gem 'rails', '~> 5.2'
group :development do