aslakhellesoy / features2cards forked from brynary/features2cards

Create PDFs from Cucumber features and scenarios for printing

This URL has Read+Write access

brynary (author)
Mon Dec 08 19:04:21 -0800 2008
commit  5a0265157da6a342d23519ec2bdd8ecf6b8fe740
tree    0e59c46a7431bfb71173a4907453afe124653fd6
parent  866b5ca4573646cda216bc2ec7dd5458e2c02e76
features2cards / features2cards.gemspec
100644 33 lines (28 sloc) 1.347 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{features2cards}
  s.version = "0.1.0"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Bryan Helmkamp"]
  s.date = %q{2008-12-08}
  s.default_executable = %q{features2cards}
  s.description = %q{features2cards. Generate printable PDF index cards from Cucumber feature files}
  s.email = %q{bryan@brynary.com}
  s.executables = ["features2cards"]
  s.files = ["History.txt", "MIT-LICENSE.txt", "README.rdoc", "Rakefile", "bin/features2cards", "lib/features2cards", "lib/features2cards/card.rb", "lib/features2cards/cli.rb", "lib/features2cards/prawn.rb", "lib/features2cards.rb"]
  s.homepage = %q{http://github.com/brynary/features2cards}
  s.require_paths = ["lib"]
  s.rubygems_version = %q{1.3.1}
  s.summary = %q{features2cards. Generate printable PDF index cards from Cucumber feature files}
 
  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<prawn>, [">= 0"])
    else
      s.add_dependency(%q<prawn>, [">= 0"])
    end
  else
    s.add_dependency(%q<prawn>, [">= 0"])
  end
end