tabulatr.gemspec in tabulatr-0.0.1 vs tabulatr.gemspec in tabulatr-0.0.2

- old
+ new

@@ -1,26 +1,29 @@ -# coding: utf-8 +# -*- encoding: utf-8 -*- +$:.push File.expand_path("../lib", __FILE__) +require "tabulatr/version" -#require File.expand_path('../lib/tabulatr/version', __FILE__) - Gem::Specification.new do |s| - s.add_runtime_dependency('rails', '~> 3.0.3') - s.authors = ["Peter Horn"] - s.summary = "Tabulatr is a DSL to easily create tables for e.g. admin backends." - s.email = ['team@metaminded.com'] - #s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } - #s.extra_rdoc_files = ['README.mkd'] - s.description = "Tabulatr enables you to create fancy tables with filtering, pagination, batch action, bells, AND whistles. " + - "You do this mainly by specifying the names of the columns. See the README for details." - s.files = (`git ls-files`.split("\n").select { |f| !f.start_with? "spec/"}) - s.homepage = 'http://github.com/provideal/tabulatr' - s.name = 'tabulatr' - s.platform = Gem::Platform::RUBY - s.rdoc_options = ['--charset=UTF-8'] - s.require_paths = ['lib'] - s.required_rubygems_version = Gem::Requirement.new('>= 1.3.6') if s.respond_to? :required_rubygems_version= - s.rubyforge_project = 'tabulatr' - s.test_files = [] # `git ls-files -- {test,spec,features}/*`.split("\n") - s.version = "0.0.1" # MmCms::VERSION + s.name = "tabulatr" + s.version = Tabulatr::VERSION.dup + s.platform = Gem::Platform::RUBY + s.summary = "Tabulatr is a DSL to easily create tables for e.g. admin backends." + s.email = "info@provideal.net" + s.homepage = "http://github.com/provideal/tabulatr" + s.description = "Tabulatr enables you to create fancy tables with filtering, pagination, " + + "batch action, bells, AND whistles. You do this mainly by specifying the " + + "names of the columns. See the README for details." + s.authors = ['Peter Horn', 'René Sprotte'] + + s.files = `git ls-files`.split("\n") + s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") + s.executables = [] + s.require_paths = ["lib"] + s.rdoc_options = ['--charset=UTF-8'] + + + s.add_runtime_dependency('rails', '~> 3.0') s.add_dependency('whiny_hash', '>= 0.0.2') s.add_dependency('id_stuffer', '>= 0.0.1') -end \ No newline at end of file + + s.rubyforge_project = "tabulatr" +end