reportable.gemspec - reportable - mirror of github.com/hdm/reportable, required by WarVox.
 (HTM) git clone git://jay.scot/reportable.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
       reportable.gemspec (1184B)
       ---
            1 # -*- encoding: utf-8 -*-
            2 
            3 pkg_files = [
            4   'README.md',
            5   'HISTORY.md',
            6   'Rakefile',
            7   'MIT-LICENSE'
            8 ]
            9 pkg_files += Dir['generators/**/*']
           10 pkg_files += Dir['lib/**/*.rb']
           11 pkg_files += Dir['rails/**/*.rb']
           12 pkg_files += Dir['spec/**/*.{rb,yml,opts}']
           13 
           14 Gem::Specification.new do |s|
           15 
           16   s.name    = %q{reportable}
           17   s.version = '1.3.1'
           18 
           19   s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to?(:required_rubygems_version=)
           20   s.authors                   = ['Marco Otte-Witte', 'Martin Kavalar']
           21   s.date                      = %q{2012-02-14}
           22   s.email                     = %q{reportable@saulabs.com}
           23   s.files                     = pkg_files
           24   s.homepage                  = %q{http://github.com/saulabs/reportable}
           25   s.require_path              = 'lib'
           26   s.rubygems_version          = %q{1.3.0}
           27   s.has_rdoc                  = false
           28   s.summary                   = %q{Easy report generation for Ruby on Rails}
           29   s.description               = %q{Reportable allows for easy report generation from ActiveRecord models by the addition of the reportable method.}
           30 
           31 
           32   s.add_dependency(%q<activerecord>, ['>= 3.0'])
           33   s.add_dependency(%q<activesupport>, ['>= 3.0.0'])
           34 
           35 end