mirror of
https://github.com/TracksApp/tracks.git
synced 2026-03-06 21:00:20 +01:00
24 lines
995 B
Ruby
24 lines
995 B
Ruby
# -*- encoding: utf-8 -*-
|
|
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = 'aruba'
|
|
s.version = "0.2.2"
|
|
s.authors = ["Aslak Hellesøy", "David Chelimsky"]
|
|
s.description = 'CLI Steps for Cucumber, hand-crafted for you in Aruba'
|
|
s.summary = "aruba-#{s.version}"
|
|
s.email = 'cukes@googlegroups.com'
|
|
s.homepage = 'http://github.com/aslakhellesoy/aruba'
|
|
|
|
# s.add_dependency 'cucumber', '~> 0.9.0' unless File.directory?(File.dirname(__FILE__) + '/../cucumber')
|
|
s.add_development_dependency('rspec', "~> 2.0.0.beta.22")
|
|
|
|
s.rubygems_version = "1.3.7"
|
|
# s.files = `git ls-files`.split("\n")
|
|
# s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
|
|
# s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
s.extra_rdoc_files = ["LICENSE", "README.rdoc", "History.txt"]
|
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
s.require_path = "lib"
|
|
end
|
|
|