Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve gemspec description #696

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion mocha.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ Gem::Specification.new do |s|
s.required_ruby_version = '>= 2.1'

s.authors = ['James Mead']
s.description = 'Mocking and stubbing library with JMock/SchMock syntax, which allows mocking and stubbing of methods on real (non-mock) classes.'
s.description = <<~EOS
A Ruby library for mocking and stubbing with a unified, simple and readable syntax
for both full & partial mocking. Built-in support for Minitest and Test::Unit.
Supported by many other test frameworks, e.g. RSpec.
EOS
s.email = '[email protected]'

s.files = Dir.chdir(File.expand_path('..', __FILE__)) do
Expand Down