File: rr.gemspec

package info (click to toggle)
ruby-rr 3.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,424 kB
  • sloc: ruby: 11,405; makefile: 7
file content (31 lines) | stat: -rw-r--r-- 835 bytes parent folder | download
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
# encoding: utf-8

require File.expand_path('../lib/rr/version', __FILE__)

Gem::Specification.new do |gem|
  gem.name = 'rr'
  gem.version = RR.version
  gem.authors = ['Kouhei Sutou', 'Brian Takita', 'Elliot Winkler']
  gem.email = ['kou@cozmixng.org']
  gem.description = 'RR is a test double framework that features a rich selection of double techniques and a terse syntax.'
  gem.summary = 'RR is a test double framework that features a rich selection of double techniques and a terse syntax.'
  gem.homepage = 'https://rr.github.io/rr'
  gem.license = 'MIT'

  gem.files = Dir[
    'Appraisals',
    'CHANGES.md',
    'CREDITS.md',
    'Gemfile',
    'LICENSE',
    'README.md',
    'Rakefile',
    'doc/*.md',
    'gemfiles/**/*',
    'lib/**/*.rb',
    'rr.gemspec',
    'spec/**/*'
  ].to_a

  gem.require_paths = ['lib']
end