View scopes.txt
Here is a list of scopes to use in Sublime Text 2 snippets - | |
ActionScript: source.actionscript.2 | |
AppleScript: source.applescript | |
ASP: source.asp | |
Batch FIle: source.dosbatch | |
C#: source.cs | |
C++: source.c++ | |
Clojure: source.clojure | |
CoffeeScript: source.coffee |
View Full Trace
activeadmin (0.4.3) app/assets/stylesheets/active_admin/mixins/_sections.css.scss:6:in `box-shadow' | |
activeadmin (0.4.3) app/assets/stylesheets/active_admin/mixins/_sections.css.scss:6:in `section-header' | |
activeadmin (0.4.3) app/assets/stylesheets/active_admin/_forms.css.scss:16 | |
activeadmin (0.4.3) app/assets/stylesheets/active_admin/_base.css.scss:9 | |
app/assets/stylesheets/active_admin.css.scss:12 | |
sass (3.4.21) lib/sass/tree/visitors/perform.rb:349:in `block in visit_mixin' | |
sass (3.4.21) lib/sass/stack.rb:98:in `block in with_mixin' | |
sass (3.4.21) lib/sass/stack.rb:115:in `with_frame' | |
sass (3.4.21) lib/sass/stack.rb:98:in `with_mixin' | |
sass (3.4.21) lib/sass/tree/visitors/perform.rb:347:in `visit_mixin' |
View config.log
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by configure, which was | |
generated by GNU Autoconf 2.65. Invocation command line was | |
$ ./configure --prefix=/Users/robert/.rbenv/versions/1.9.2-p0 --with-libyaml-dir=/usr/local/opt/libyaml | |
## --------- ## | |
## Platform. ## |
View Gemfile
source 'http://rubygems.org' | |
ruby '1.9.3' | |
gem 'rails', '3.1.10' | |
gem 'pg', '0.12.0' | |
gem 'sprockets', '2.0.4' | |
gem 'sass-rails', '3.1.4' | |
gem 'coffee-rails', '3.1.1' | |
gem 'uglifier' |
View MyCustomPlayer.as
package { | |
// [ ... ] | |
// simplified pseudo-code to show the mecanism... | |
public class MyCustomPlayer extends Player { | |
// [ ... ] | |
private function setComponents():void { |
View gist:1683557
# _children.html.erb | |
<%= content_tag :ol, raw(children) %> | |
# _controls.html.erb | |
<%- | |
edit = link_to '', polymorphic_url(node, :action => :edit), :title => t('.edit_this'), :class => 'button edit' | |
if opts[:has_children] | |
delete = link_to('', url_for(node), | |
:title => t('.delete'), | |
:method => :delete, |
View rspec-syntax-cheat-sheet.rb
# RSpec 2.0 syntax Cheet Sheet by http://ApproachE.com | |
# defining spec within a module will automatically pick Player::MovieList as a 'subject' (see below) | |
module Player | |
describe MovieList, "with optional description" do | |
it "is pending example, so that you can write ones quickly" | |
it "is already working example that we want to suspend from failing temporarily" do | |
pending("working on another feature that temporarily breaks this one") |