main
 1# coding: utf-8
 2lib = File.expand_path('../lib', __FILE__)
 3$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
 4require 'camtasy/version'
 5
 6Gem::Specification.new do |spec|
 7  spec.name          = "camtasy"
 8  spec.version       = Camtasy::VERSION
 9  spec.authors       = ["mo khan"]
10  spec.email         = ["mo@mokhan.ca"]
11  spec.summary       = %q{playing with webcams.}
12  spec.description   = %q{no kidding... i'm just messing around with webcams.}
13  spec.homepage      = ""
14  spec.license       = "MIT"
15
16  spec.files         = `git ls-files -z`.split("\x0")
17  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
19  spec.require_paths = ["lib"]
20
21  spec.add_runtime_dependency "thor", '~> 0.19'
22  spec.add_runtime_dependency "av_capture", '~> 1.0'
23  spec.add_development_dependency "bundler", "~> 1.6"
24  spec.add_development_dependency "rake"
25  spec.add_development_dependency "rspec"
26end