Release 1.2.0 - reportable - Fork of reportable required by WarVox, from hdm/reportable.
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
 (DIR) commit 0afe9dbd5fb5cf6f67e834bea55b61e0a15223c9
 (DIR) parent 660e1ab0067ae945b96d8e3503f55f97a5eeb73d
 (HTM) Author: Martin Kavalar <martin@sauspiel.de>
       Date:   Tue, 14 Feb 2012 11:01:25 +0100
       
       Release 1.2.0
       
       Diffstat:
         M README.md                           |      24 +++---------------------
         M reportable.gemspec                  |      21 +++++----------------
       
       2 files changed, 8 insertions(+), 37 deletions(-)
       ---
 (DIR) diff --git a/README.md b/README.md
       @@ -60,27 +60,9 @@ To install the Reportable gem, simply run
        
            [sudo] gem install reportable
        
       -### Rails 2.x
       +### Rails 3.x
        
       -To install Reportable for Rails 2.x, add it to your application's dependencies in your `environment.rb`:
       -
       -    config.gem 'reportable', :lib => 'saulabs/reportable'
       -
       -and generate the migration that create reportable's cache table:
       -
       -    ./script/generate reportable_migration
       -
       -If you want to use reportable's JavaScript graph output format, you also have to generate the JavaScript files:
       -
       -                ./script/generate reportable_raphael_assets
       -
       -if you want to use [Raphael](http://raphaeljs.com/) or if you want to use [jQuery](http://jquery.com/) and [flot](http://code.google.com/p/flot/):
       -
       -                ./script/generate reportable_jquery_flot_assets
       -
       -### Rails 3.0
       -
       -To install Reportable for Rails 3.0, add it to your application's Gemfile:
       +To install Reportable for Rails 3.x, add it to your application's Gemfile:
        
            gem 'reportable', :require => 'saulabs/reportable'
        
       @@ -109,7 +91,7 @@ Plans
        Authors
        -------
        
       -© 2008-2010 Marco Otte-Witte (<http://simplabs.com>) and Martin Kavalar (<http://www.sauspiel.de>)
       +© 2008-2012 Marco Otte-Witte (<http://simplabs.com>) and Martin Kavalar (<http://www.sauspiel.de>)
        
        Released under the MIT license
        
 (DIR) diff --git a/reportable.gemspec b/reportable.gemspec
       @@ -14,11 +14,11 @@ pkg_files += Dir['spec/**/*.{rb,yml,opts}']
        Gem::Specification.new do |s|
        
          s.name    = %q{reportable}
       -  s.version = '1.1.2'
       +  s.version = '1.2.0'
        
          s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to?(:required_rubygems_version=)
          s.authors                   = ['Marco Otte-Witte', 'Martin Kavalar']
       -  s.date                      = %q{2010-06-28}
       +  s.date                      = %q{2012-02-14}
          s.email                     = %q{reportable@saulabs.com}
          s.files                     = pkg_files
          s.homepage                  = %q{http://github.com/saulabs/reportable}
       @@ -28,19 +28,8 @@ Gem::Specification.new do |s|
          s.summary                   = %q{Easy report generation for Ruby on Rails}
          s.description               = %q{Reportable allows for easy report generation from ActiveRecord models by the addition of the reportable method.}
        
       -  if s.respond_to?(:specification_version) then
       -    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
       -    s.specification_version = 2
       -    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
       -      s.add_runtime_dependency(%q<activerecord>, ['>= 2.0.0'])
       -      s.add_runtime_dependency(%q<activesupport>, ['>= 2.0.0'])
       -    else
       -      s.add_dependency(%q<activerecord>, ['>= 2.0.0'])
       -      s.add_dependency(%q<activesupport>, ['>= 2.0.0'])
       -    end
       -  else
       -    s.add_dependency(%q<activerecord>, ['>= 2.0'])
       -    s.add_dependency(%q<activesupport>, ['>= 2.0.0'])
       -  end
       +
       +  s.add_dependency(%q<activerecord>, ['>= 3.0'])
       +  s.add_dependency(%q<activesupport>, ['>= 3.0.0'])
        
        end