Sha256: 0c1323740b5b77e8fd4f8e7cd5747e06703baabb254c1655d7bec527789fad72
Contents?: true
Size: 1.35 KB
Versions: 3
Compression:
Stored size: 1.35 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'copyleaks/version' Gem::Specification.new do |spec| spec.name = 'plagiarism-checker' spec.version = Copyleaks::VERSION spec.authors = ['Copyleaks ltd'] spec.email = ['sales@copyleaks.com'] spec.summary = 'Detects plagiarism and checks content distribution online.' spec.description = 'Copyleaks detects plagiarism and checks content distribution online. Use Copyleaks to find out if textual content is original and if it has been used before. With Copyleaks cloud publishers, academics, and more can scan files (pdf, doc, docx, ocr...), URLs and free text for plagiarism check.' spec.homepage = 'https://api.copyleaks.com' spec.license = 'MIT' spec.metadata['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = 'https://github.com/Copyleaks/Ruby-Plagiarism-Checker' spec.metadata['changelog_uri'] = 'https://github.com/Copyleaks/Ruby-Plagiarism-Checker/releases' spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:demo|test|spec|features)/}) } end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
plagiarism-checker-3.0.3 | plagiarism-checker.gemspec |
plagiarism-checker-3.0.2 | plagiarism-checker.gemspec |
plagiarism-checker-3.0.1 | plagiarism-checker.gemspec |