1 Gem::Specification.new do |s|
5 s.specification_version = 2 if s.respond_to? :specification_version=
7 s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8 s.authors = ["Brian Ford"]
9 s.date = %q{2008-05-21}
10 s.email = %q{bford@engineyard.com}
12 s.extra_rdoc_files = %w[ README LICENSE ]
13 s.executables = ["mkspec", "mspec", "mspec-ci", "mspec-run", "mspec-tag"]
14 s.files = FileList[ '{bin,lib,spec}/**/*.{yaml,txt,rb}', 'Rakefile', *s.extra_rdoc_files ]
15 s.homepage = %q{http://rubyspec.org}
16 s.rubyforge_project = 'http://rubyforge.org/projects/mspec'
17 s.require_paths = ["lib"]
18 s.rubygems_version = %q{1.1.1}
20 MSpec is a specialized framework that is syntax-compatible
21 with RSpec for basic things like describe, it blocks and
22 before, after actions.
24 MSpec contains additional features that assist in writing
25 the RubySpecs used by multiple Ruby implementations. Also,
26 MSpec attempts to use the simplest Ruby language features
27 so that beginning Ruby implementations can run it.
30 s.rdoc_options << '--title' << 'MSpec Gem' <<
31 '--main' << 'README' <<