| Release 1.2.0 - reportable - Fork of reportable required by WarVox, from hdm/re… | |
| Log | |
| Files | |
| Refs | |
| README | |
| --- | |
| commit 0afe9dbd5fb5cf6f67e834bea55b61e0a15223c9 | |
| parent 660e1ab0067ae945b96d8e3503f55f97a5eeb73d | |
| Author: Martin Kavalar <[email protected]> | |
| 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(-) | |
| --- | |
| 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… | |
| - | |
| - 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 … | |
| - | |
| - ./script/generate reportable_raphael_assets | |
| - | |
| -if you want to use [Raphael](http://raphaeljs.com/) or if you want to use [jQu… | |
| - | |
| - ./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 (<htt… | |
| +© 2008-2012 Marco Otte-Witte (<http://simplabs.com>) and Martin Kavalar (<htt… | |
| Released under the MIT license | |
| 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?(… | |
| s.authors = ['Marco Otte-Witte', 'Martin Kavalar'] | |
| - s.date = %q{2010-06-28} | |
| + s.date = %q{2012-02-14} | |
| s.email = %q{[email protected]} | |
| 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 generatio… | |
| - 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 |