public
Description: Diff Rails framework-generated files against their defaults. Helpful during code audits and debugging sessions.
Homepage:
Clone URL: git://github.com/briandoll/rails_framework_diff.git
100644 21 lines (14 sloc) 0.508 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Look in the tasks/setup.rb file for the various options that can be
# configured in this Rakefile. The .rake files in the tasks directory
# are where the options are used.
 
load 'tasks/setup.rb'
 
ensure_in_path 'lib'
require 'rails_framework_diff'
 
task :default => 'spec:run'
 
PROJ.name = 'rails_framework_diff'
PROJ.authors = 'Brian Doll'
PROJ.email = 'brian@emphaticsolutions.com'
PROJ.url = 'http://github.com/briandoll'
PROJ.rubyforge.name = 'rails_framework_diff'
 
PROJ.spec.opts << '--color'
 
# EOF