├── .document ├── .gitignore ├── LICENSE ├── README.rdoc ├── Rakefile ├── VERSION ├── app └── models │ ├── crowdfunding.rb │ └── crowdfunding │ └── project.rb ├── crowdfunding.gemspec ├── lib ├── crowdfunding.rb ├── engine.rb └── generators │ └── crowdfunding │ ├── crowdfunding_generator.rb │ └── templates │ └── migration.rb └── test ├── helper.rb └── test_crowdfunding.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielweinmann/crowdfunding/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielweinmann/crowdfunding/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielweinmann/crowdfunding/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielweinmann/crowdfunding/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielweinmann/crowdfunding/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.1.0 2 | -------------------------------------------------------------------------------- /app/models/crowdfunding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielweinmann/crowdfunding/HEAD/app/models/crowdfunding.rb -------------------------------------------------------------------------------- /app/models/crowdfunding/project.rb: -------------------------------------------------------------------------------- 1 | class Crowdfunding::Project < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /crowdfunding.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielweinmann/crowdfunding/HEAD/crowdfunding.gemspec -------------------------------------------------------------------------------- /lib/crowdfunding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielweinmann/crowdfunding/HEAD/lib/crowdfunding.rb -------------------------------------------------------------------------------- /lib/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielweinmann/crowdfunding/HEAD/lib/engine.rb -------------------------------------------------------------------------------- /lib/generators/crowdfunding/crowdfunding_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielweinmann/crowdfunding/HEAD/lib/generators/crowdfunding/crowdfunding_generator.rb -------------------------------------------------------------------------------- /lib/generators/crowdfunding/templates/migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielweinmann/crowdfunding/HEAD/lib/generators/crowdfunding/templates/migration.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielweinmann/crowdfunding/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/test_crowdfunding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielweinmann/crowdfunding/HEAD/test/test_crowdfunding.rb --------------------------------------------------------------------------------