forked from rspec/rspec-metagem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrspec.gemspec
More file actions
33 lines (28 loc) · 1.15 KB
/
rspec.gemspec
File metadata and controls
33 lines (28 loc) · 1.15 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 -*-
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "rspec/version"
Gem::Specification.new do |s|
s.name = "rspec"
s.version = RSpec::Version::STRING
s.platform = Gem::Platform::RUBY
s.authors = ["Steven Baker", "David Chelimsky"]
s.email = "rspec-users@rubyforge.org;"
s.homepage = "http://github.com/rspec"
s.summary = "rspec-#{RSpec::Version::STRING}"
s.description = "BDD for Ruby"
s.rubygems_version = "1.3.7"
s.rubyforge_project = "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.markdown" ]
s.rdoc_options = ["--charset=UTF-8"]
s.require_path = "lib"
%w[core expectations mocks].each do |name|
if RSpec::Version::STRING =~ /[a-zA-Z]+/
s.add_runtime_dependency "rspec-#{name}", "= #{RSpec::Version::STRING}"
else
s.add_runtime_dependency "rspec-#{name}", "~> #{RSpec::Version::STRING.split('.')[0..1].concat(['0']).join('.')}"
end
end
end