-
Notifications
You must be signed in to change notification settings - Fork 18
/
copyscape.gemspec
28 lines (22 loc) · 942 Bytes
/
copyscape.gemspec
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
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/copyscape/version", __FILE__)
Gem::Specification.new do |s|
s.name = "copyscape"
s.version = Copyscape::Version
s.platform = Gem::Platform::RUBY
s.authors = ['Ben VandenBos']
s.email = ['[email protected]']
s.homepage = "http://github.com/bvandenbos/copyscape-rb"
s.summary = "Ruby wrapper for Copyscape API"
s.description = "Ruby wrapper for Copyscape API"
s.required_rubygems_version = ">= 1.3.6"
s.add_development_dependency "bundler", ">= 1.0.0"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
s.add_dependency("nokogiri", ">= 1.4")
s.add_dependency("httparty", ">= 0.8.1")
s.add_development_dependency("rake")
s.add_development_dependency("minitest")
s.add_development_dependency("mocha")
end