This file contains hidden or 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
| { | |
| "name": "erlang-build", | |
| "main": "./lib/erlang-build", | |
| "version": "0.0.0", | |
| "description": "A short description of your package", | |
| "activationEvents": ["erlang-build:toggle-messages"], | |
| "repository": "https://github.com/atom/erlang-build", | |
| "license": "MIT", | |
| "engines": { | |
| "atom": ">0.50.0" |
This file contains hidden or 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
| {WorkspaceView} = require 'atom' | |
| path = require 'path' | |
| ErlangBuild = require '../lib/erlang-build' | |
| # Use the command `window:run-package-specs` (cmd-alt-ctrl-p) to run specs. | |
| # | |
| # To run a specific `it` or `describe` block add an `f` to the front (e.g. `fit` | |
| # or `fdescribe`). Remove the `f` to unfocus the block. | |
| describe "ErlangBuild", -> |
This file contains hidden or 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
| { | |
| "name": "almighty", | |
| "dependencies": { | |
| "handlebars": "~1.3.0", | |
| "jquery": "^1.11.1", | |
| "qunit": "~1.12.0", | |
| "ember-qunit": "~0.1.5", | |
| "ember": "1.5.1", | |
| "ember-data": "1.0.0-beta.7", | |
| "ember-resolver": "stefanpenner/ember-jj-abrams-resolver#master", |
This file contains hidden or 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 'vendor/foundation/scss/foundation.scss'; |
This file contains hidden or 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
| export default Ember.Route.extend({ | |
| activate: function() { | |
| this.controllerFor('navigation').set('activeLink', 'projects'); | |
| }, | |
| model: function() { | |
| return this.store.find('project'); | |
| } | |
| }); |