adkron (owner)

Fork Of

Revisions

gist: 104831 Download_button fork
public
Public Clone URL: git://gist.github.com/104831.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
9
10
11
12
gem 'test-unit', '1.2.3' if RUBY_VERSION.to_f >= 1.9
 
# Don't load rspec if running "rake gems:*"
unless ARGV.any? {|a| a =~ /^gems/}
 
begin
  require 'spec/rake/spectask'
rescue MissingSourceFile
  module Spec
    module Rake
...