Initial commit.

This commit is contained in:
Carlos Antonio da Silva 2009-11-18 15:45:35 -02:00
commit a7d0cc21f0
9 changed files with 73 additions and 0 deletions

0
CHANGELOG.rdoc Normal file
View File

20
MIT-LICENSE Normal file
View File

@ -0,0 +1,20 @@
Copyright (c) 2009 [name of plugin creator]
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.

20
README.rdoc Normal file
View File

@ -0,0 +1,20 @@
SimpleForm
==========
Forms made easy!
== TODO
Please refer to TODO file.
== Contributors
* José Valim (http://github.com/josevalim)
* Carlos Antônio da Silva (http://github.com/carlosantoniodasilva)
== Bugs and Feedback
If you discover any bugs or want to drop a line, feel free to create an issue on
GitHub or send an e-mail to the mailing list.
MIT License. Copyright 2009 Plataforma Tecnologia. http://blog.plataformatec.com.br

23
Rakefile Normal file
View File

@ -0,0 +1,23 @@
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
desc 'Default: run unit tests.'
task :default => :test
desc 'Test the simple_form plugin.'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.libs << 'test'
t.pattern = 'test/**/*_test.rb'
t.verbose = true
end
desc 'Generate documentation for the simple_form plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'SimpleForm'
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README')
rdoc.rdoc_files.include('lib/**/*.rb')
end

0
TODO.rdoc Normal file
View File

1
init.rb Normal file
View File

@ -0,0 +1 @@
# Include hook code here

1
lib/simple_form.rb Normal file
View File

@ -0,0 +1 @@
# SimpleForm

5
test/simple_form_test.rb Normal file
View File

@ -0,0 +1,5 @@
require 'test_helper'
class SimpleFormTest < ActiveSupport::TestCase
end

3
test/test_helper.rb Normal file
View File

@ -0,0 +1,3 @@
require 'rubygems'
require 'active_support'
require 'active_support/test_case'