Yelly likes to yell. To make the magic happen for simple cases just invoke him ala:
bundle exec rspec --require=yelly_the_yellingist_formatter.rb --format=YellyTheYellingistFormatter spec/models/your_file_here_spec.rb
In closing, >:O
| #!/usr/bin/env ruby | |
| require 'fileutils' | |
| require 'pp' | |
| include FileUtils | |
| FileUtils.mkdir_p('images') unless File.exist?('images') | |
| FileUtils.rm_rf('dribbble.html') if File.exist?('dribbble.html') | |
| FileUtils.rm_rf('dribbble.rss') if File.exist?('dribbble.rss') | |
| FileUtils.rm_rf('download_me.txt') if File.exist?('download_me.txt') |
| --- | |
| :benchmark: false | |
| :verbose: true | |
| :update_sources: true | |
| gem: --no-rdoc --no-ri | |
| install: --env-shebang | |
| :sources: | |
| - http://gems.rubyforge.org | |
| - http://gems.github.com | |
| :backtrace: false |
| require 'pp' | |
| require 'irb/completion' | |
| IRB.conf[:AUTO_INDENT] = true | |
| IRB.conf[:VERBOSE] = true | |
| begin | |
| require 'rubygems' | |
| require 'wirble' |
| #!/usr/bin/env ruby | |
| require 'rubygems' | |
| require 'active_support' | |
| require 'yaml' | |
| require 'fileutils' | |
| require 'pathname' | |
| RootPath = Pathname.new('/Volumes/space/github_mirror') | |
| GithubInfo = YAML.load_file(RootPath.join('the_parts_horror.yml')) | |
| begin | |
| require 'flog' | |
| require 'flay' | |
| require 'reek/rake_task' | |
| namespace :quality do | |
| desc "Analyze for code complexity" | |
| task :flog do | |
| flog = Flog.new :methods => true | |
| flog.flog ['app', 'lib'] |
| #!/usr/bin/env ruby | |
| require 'rubygems' | |
| require 'active_support' | |
| require 'yaml' | |
| require 'fileutils' | |
| require 'pathname' | |
| RootPath = Pathname.new('/Volumes/space/github_mirror') | |
| GithubInfo = YAML.load_file(RootPath.join('the_parts_horror.yml')) | |