Skip to content

Commit

Permalink
Initial commit of project generated with hoe
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Timberlake committed Apr 24, 2009
0 parents commit dc23e5c
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 0 deletions.
3 changes: 3 additions & 0 deletions History.txt
@@ -0,0 +1,3 @@
=== 1.0.0 / 2009-04-24

* Initial release
7 changes: 7 additions & 0 deletions Manifest.txt
@@ -0,0 +1,7 @@
History.txt
Manifest.txt
README.txt
Rakefile
bin/map_fields
lib/map_fields.rb
test/test_map_fields.rb
52 changes: 52 additions & 0 deletions README.txt
@@ -0,0 +1,52 @@
= map_fields

* FIX (url)

== DESCRIPTION:

A Rails plugin which provides a hook to preview and map the fields of an uploaded CSV file to a pre-defined schema

== FEATURES/PROBLEMS:

* FIX (list of features or problems)

== SYNOPSIS:

FIX (code sample of usage)

== REQUIREMENTS:

* FIX (list of requirements)

== INSTALL:

sudo gem install internuity-map-fields -s http://gems.github.com

or

./script/plugin install git://github.com/internuity/map-fields

== LICENSE:

(The MIT License)

Copyright (c) 2009

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
12 changes: 12 additions & 0 deletions Rakefile
@@ -0,0 +1,12 @@
# -*- ruby -*-

require 'rubygems'
require 'hoe'
require './lib/map_fields.rb'

Hoe.new('map_fields', MapFields::VERSION) do |p|
p.rubyforge_name = 'map-field'
p.developer('Andrew Timberlake', 'andrew@andrewtimberlake.com')
end

# vim: syntax=Ruby
3 changes: 3 additions & 0 deletions lib/map_fields.rb
@@ -0,0 +1,3 @@
class MapFields
VERSION = '1.0.0'
end

0 comments on commit dc23e5c

Please sign in to comment.