File: thread_order.gemspec

package info (click to toggle)
ruby-thread-order 1.1.0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 108 kB
  • sloc: ruby: 369; sh: 42; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 674 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require File.expand_path('../lib/thread_order/version', __FILE__)

Gem::Specification.new do |s|
  s.name        = 'thread_order'
  s.version     = ThreadOrder::VERSION
  s.licenses    = ['MIT']
  s.summary     = "Test helper for ordering threaded code"
  s.description = "Test helper for ordering threaded code (does not depend on gems or stdlib, tested on 1.8.7 - 2.2, rbx, jruby)."
  s.authors     = ["Josh Cheek"]
  s.email       = 'josh.cheek@gmail.com'
  s.files       = `git ls-files`.split("\n")
  s.test_files  = `git ls-files -- spec/*`.split("\n")
  s.homepage    = 'https://github.com/JoshCheek/thread_order'
  s.add_development_dependency 'rspec', '~> 3.0'
end