forked from rspec/rspec-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rspec-core.gemspec
25 lines (21 loc) · 932 Bytes
/
rspec-core.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
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "rspec/core/version"
Gem::Specification.new do |s|
s.name = "rspec-core"
s.version = RSpec::Core::Version::STRING
s.platform = Gem::Platform::RUBY
s.authors = ["Chad Humphries", "David Chelimsky"]
s.email = "[email protected];"
s.homepage = "http://github.com/rspec"
s.summary = "rspec-core-#{RSpec::Core::Version::STRING}"
s.description = "BDD for Ruby. RSpec runner and example groups."
s.rubyforge_project = "rspec"
s.files = `git ls-files -- lib/*`.split("\n")
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
s.bindir = 'exe'
s.executables = `git ls-files -- exe/*`.split("\n").map{ |f| File.basename(f) }
s.extra_rdoc_files = [ "README.md" ]
s.rdoc_options = ["--charset=UTF-8"]
s.require_path = "lib"
end