it's now a gem - reportable - Fork of reportable required by WarVox, from hdm/reportable.
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
---
(DIR) commit 21ce513690014780c93aae68065379b39baff23b
(DIR) parent 73aaa8bdee1c49f0f75fab916e7b0340024b9ac1
(HTM) Author: Marco Otte-Witte <marco.otte-witte@simplabs.com>
Date: Thu, 25 Feb 2010 19:19:08 +0100
it's now a gem
Diffstat:
M .gitignore | 2 ++
D install.rb | 0
R init.rb -> rails/init.rb | 0
M reportable.gemspec | 16 ++++++++++++++--
D uninstall.rb | 0
5 files changed, 16 insertions(+), 2 deletions(-)
---
(DIR) diff --git a/.gitignore b/.gitignore
@@ -3,3 +3,4 @@ spec/log/spec.log
spec/db/reportable.sqlite3.db
doc
.yardoc
+reportable-*.gem
+\ No newline at end of file
(DIR) diff --git a/install.rb b/install.rb
(DIR) diff --git a/init.rb b/rails/init.rb
(DIR) diff --git a/reportable.gemspec b/reportable.gemspec
@@ -1,5 +1,16 @@
# -*- encoding: utf-8 -*-
+pkg_files = [
+ 'README.md',
+ 'HISTORY.md',
+ 'Rakefile',
+ 'MIT-LICENSE'
+]
+pkg_files += Dir['generators/**/*.{rb,erb}']
+pkg_files += Dir['lib/**/*.rb']
+pkg_files += Dir['rails/**/*.rb']
+pkg_files += Dir['spec/**/*.{rb,yml,opts}']
+
Gem::Specification.new do |s|
s.name = %q{reportable}
@@ -9,10 +20,11 @@ Gem::Specification.new do |s|
s.authors = ['Marco Otte-Witte', 'Martin Kavalar']
s.date = %q{2010-02-26}
s.email = %q{reportable@saulabs.com}
- s.files = []
+ s.files = pkg_files
s.homepage = %q{http://github.com/saulabs/reportable}
- s.require_paths = ['lib']
+ s.require_path = 'lib'
s.rubygems_version = %q{1.3.0}
+ s.has_rdoc = false
s.summary = %q{Easy report generation for Ruby on Rails}
s.description = %q{Reportable allows for easy report generation from ActiveRecord and DataMapper models by the addition of the reportable method.}
(DIR) diff --git a/uninstall.rb b/uninstall.rb