forked from rspec/rspec-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rspec-core.gemspec
38 lines (29 loc) · 1.3 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
# -*- 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 = "dchelimsky@gmail.com;chad.humphries@gmail.com"
s.homepage = "http://github.com/rspec/rspec-core"
s.summary = "rspec-core-#{RSpec::Core::Version::STRING}"
s.description = "RSpec runner and example groups"
s.rubygems_version = "1.3.7"
s.rubyforge_project = "rspec"
s.default_executable = "rspec"
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 = [ "README.md" ]
s.rdoc_options = ["--charset=UTF-8"]
s.require_path = "lib"
s.post_install_message = %Q{**************************************************
Thank you for installing #{s.summary}
Please be sure to look at the upgrade instructions to see what might have
changed since the last release:
http://github.com/rspec/rspec-core/blob/master/Upgrade.markdown
**************************************************
}
end