-
Notifications
You must be signed in to change notification settings - Fork 3
/
redcard.gemspec
31 lines (26 loc) · 1.13 KB
/
redcard.gemspec
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
# -*- encoding: utf-8 -*-
require 'redcard/version'
Gem::Specification.new do |gem|
gem.name = "redcard"
gem.version = "#{RedCard::VERSION}"
gem.authors = ["Brian Shirai"]
gem.email = ["[email protected]"]
gem.homepage = "https://github.com/brixen/redcard"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) unless File.extname(f) == ".bat" }.compact
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.require_paths = ["lib"]
gem.summary = <<-EOS
RedCard provides a standard way to ensure that the running Ruby implementation
matches the desired language version, implementation, and implementation
version.
EOS
gem.has_rdoc = true
gem.extra_rdoc_files = %w[ README.md LICENSE ]
gem.rubygems_version = %q{1.3.5}
gem.rdoc_options << '--title' << 'RedCard Gem' <<
'--main' << 'README' <<
'--line-numbers'
gem.add_development_dependency "rake", "~> 0.9"
gem.add_development_dependency "rspec", "~> 2.8"
end