internuity / map-fields

A Rails plugin to handle the mapping of an uploaded CSV file to an expected format

This URL has Read+Write access

Tue Jun 02 11:27:28 -0700 2009
commit  502d1160754c4d7847d017a2b0cd23fa4f00cb0f
tree    5149f3ce5440cdf3125e1d1d3bd07538e4d39309
parent  1d8face417ca0a785d74b10c267680b67940c025
map-fields / Rakefile
100644 39 lines (29 sloc) 0.916 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# 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.
 
begin
  require 'bones'
  Bones.setup
rescue LoadError
  begin
    load 'tasks/setup.rb'
  rescue LoadError
    raise RuntimeError, '### please install the "bones" gem ###'
  end
end
 
ensure_in_path 'lib'
require 'map_fields'
 
task :default => 'spec:run'
 
PROJ.name = 'map-fields'
PROJ.authors = 'Andrew Timberlake'
PROJ.email = 'andrew@andrewtimberlake.com'
PROJ.url = 'http://github.com/internuity/map-fields'
PROJ.version = MapFields::VERSION
PROJ.rubyforge.name = 'internuity'
PROJ.readme_file = 'README.rdoc'
PROJ.gem.files = FileList['lib/**/**', 'views/**/**', 'README.rdoc', 'init.rb', 'History.txt']
 
PROJ.exclude = %w(spec/rails_root)
 
PROJ.rdoc.remote_dir = 'map-fields'
 
PROJ.spec.opts << '--color'
 
depend_on 'fastercsv'
 
# EOF