In your Gemfile, change the bwoken line to:
gem 'bwoken', :github => 'bendyworks/bwoken', :branch => 'deprecate_rake'
Then run bundle and try running:
bwoken test
See the flags available with:
| func composeAndApply<T>(funcs: (T -> T)[], val: T) -> T { | |
| return funcs.reduce(val, combine: { (memo, aFunc) in aFunc(memo) }) | |
| } | |
| func square(val: Int) -> Int { | |
| return val * val | |
| } | |
| func double(val: Int) -> Int { | |
| return val * 2 |
| $('.discussion-bubble').filter(function() { | |
| var body = $(this).find('.comment-body').text().trim(); | |
| return body === "+1" || | |
| body === '' && $(this).find('.comment-body img.emoji[title=":+1:"]').length > 0; | |
| }).each(function() { | |
| $(this).find('.comment-content').remove().end(). | |
| find('.comment-header-action-text a').html("+1'ed"); | |
| }); |
In your Gemfile, change the bwoken line to:
gem 'bwoken', :github => 'bendyworks/bwoken', :branch => 'deprecate_rake'
Then run bundle and try running:
bwoken test
See the flags available with:
| module MyApplication | |
| class Application < Rails::Application | |
| config.cache_store = :memory_store, {:size => 4.megabytes} | |
| end | |
| end |
| class ProjectLookupConstraint | |
| def matches? request | |
| Project.where(request.params.slice(:account_name, :project_name)).first.tap do |project| | |
| request.flash.now['project'] = project | |
| end | |
| end | |
| end |
| require 'yaml' | |
| require 'active_support/core_ext/object' | |
| desc 'Compile all the things' | |
| task :compile => 'compile:all' | |
| SASS_FILES = FileList['sass/*.{sass,scss}'] | |
| COFFEE_FILES = FileList['coffee/*.coffee'] | |
| JS_FILES = COFFEE_FILES.pathmap('tmp/js/%n.js') |
| .projects_stories_page .storyLabels a[title="blocked"] { | |
| background-color: red; | |
| color: white !important; | |
| padding: 0 3px; | |
| display: inline-block; | |
| } |
| [alias] | |
| lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=local |
| <head> | |
| <meta charset='utf-8'> | |
| <meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'> | |
| <meta content='on' http-equiv='cleartype'> | |
| <title>Omg</title> | |
| <meta content='True' name='HandheldFriendly'> | |
| <meta content='320' name='MobileOptimized'> | |
| <meta content='width=device-width, initial-scale=1' name='viewport'> | |
| <meta content='' name='description'> | |
| <link href="/assets/application-[hash].css" media="all" rel="stylesheet" type="text/css" /> |