-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmoss_ruby.gemspec
More file actions
22 lines (19 loc) · 895 Bytes
/
moss_ruby.gemspec
File metadata and controls
22 lines (19 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "moss_ruby/version"
Gem::Specification.new do |s|
s.name = 'moss_ruby'
s.version = MossRuby::VERSION
s.date = '2022-05-25'
s.summary = "Moss gem to access system for Detecting Software Plagiarism"
s.description = "Moss-ruby is an unofficial ruby gem for the Moss system for Detecting Software Plagiarism (http://theory.stanford.edu/~aiken/moss/)"
s.authors = ["Andrew Cain"]
s.email = ['macite@gmail.com']
s.files = ["lib/moss_ruby.rb"]
s.homepage = 'https://github.com/doubtfire-lms/moss-ruby'
s.license = 'MIT'
s.add_runtime_dependency 'tcp_timeout', '~> 0.1.1'
s.add_development_dependency "bundler", "~> 2.3"
s.add_development_dependency "rake", "~> 13.0"
s.add_development_dependency "rspec", "~> 3.11"
end