forked from scrubber/scrubyt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scrubyt.gemspec
29 lines (23 loc) · 907 Bytes
/
scrubyt.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
28
29
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/scrubyt/version", __FILE__)
Gem::Specification.new do |s|
s.name = 'scrubyt'
s.date = '2013-06-18'
s.summary = "Scrubyt"
s.version = Scrubyt::VERSION
s.platform = Gem::Platform::RUBY
s.description = "Scraping framework"
s.authors = ["Peter"]
s.email = '[email protected]'
s.homepage = 'https://github.com/CareerArcGroup/scrubyt'
#s.add_dependency "json"
s.add_development_dependency "bundler", "~> 1.1.0"
s.add_development_dependency 'rspec'
s.add_development_dependency "simplecov"
s.add_runtime_dependency "watir-webdriver", "0.6.2"
s.add_runtime_dependency "selenium-webdriver", "2.27.1"
s.add_runtime_dependency "childprocess", "0.3.6"
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'
end