public
Description: RSpec-syntax compatible framework for RubySpecs
Homepage: http://rubyspec.org
Clone URL: git://github.com/rubyspec/mspec.git
akr (author)
Sun Oct 04 18:13:52 -0700 2009
brixen (committer)
Thu Oct 08 08:47:49 -0700 2009
commit  bcec47c70e0678a29fd0c1345358c4daf7b971a3
tree    027b6bde046421b250531445fd5eb93a5dd3dd6e
parent  cbaea095dabfc8ac64fe87780f3f96f0110df282
mspec / mspec.gemspec
100644 34 lines (29 sloc) 1.486 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
34
Gem::Specification.new do |s|
  s.name = %q{mspec}
  s.version = "1.5.12"
 
  s.specification_version = 2 if s.respond_to? :specification_version=
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Brian Ford"]
  s.date = %q{2009-6-8}
  s.email = %q{bford@engineyard.com}
  s.has_rdoc = true
  s.extra_rdoc_files = %w[ README LICENSE ]
  s.executables = ["mkspec", "mspec", "mspec-ci", "mspec-run", "mspec-tag"]
  s.files = FileList[ '{bin,lib,spec}/**/*.{yaml,txt,rb}', 'Rakefile', *s.extra_rdoc_files ]
  s.homepage = %q{http://rubyspec.org}
  s.rubyforge_project = 'http://rubyforge.org/projects/mspec'
  s.require_paths = ["lib"]
  s.rubygems_version = %q{1.1.1}
  s.summary = <<EOS
MSpec is a specialized framework that is syntax-compatible
with RSpec for basic things like describe, it blocks and
before, after actions.
 
MSpec contains additional features that assist in writing
the RubySpecs used by multiple Ruby implementations. Also,
MSpec attempts to use the simplest Ruby language features
so that beginning Ruby implementations can run it.
EOS
 
  s.rdoc_options << '--title' << 'MSpec Gem' <<
                   '--main' << 'README' <<
                   '--line-numbers'
end