-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdas_catalog.gemspec
27 lines (22 loc) · 986 Bytes
/
das_catalog.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 -*-
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
require "das_catalog/version"
Gem::Specification.new do |s|
s.name = 'das_catalog'
s.version = '0.2.1'
s.platform = Gem::Platform::RUBY
s.author = 'Brendon Murphy'
s.email = '[email protected]'
s.summary = 'Download screencasts from Destroy All Software catalog'
s.description = 'Download screencasts from Destroy All Software catalog. Uses the rss feed plus Mechanize to log you in and then download new movies to your local drive.'
s.files = Dir['lib/**/*.rb'] + Dir['bin/*'] + %w(README.md LICENSE)
s.test_files = Dir['spec/**/*.rb']
s.require_path = 'lib'
s.executables = ["das_catalog_sync"]
s.add_dependency('mechanize')
s.add_dependency('highline')
s.add_development_dependency('minitest')
s.add_development_dependency('mocha')
s.add_development_dependency('fakefs')
s.add_development_dependency('fakeweb')
end