forked from zencoder/zencoder-rb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzencoder.gemspec
23 lines (21 loc) · 889 Bytes
/
zencoder.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'zencoder/version'
Gem::Specification.new do |s|
s.name = "zencoder"
s.version = Zencoder::GEM_VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Nathan Sutton", "Brandon Arbini"]
s.email = "[email protected]"
s.homepage = "http://github.com/zencoder/zencoder-rb"
s.summary = "Zencoder <http://zencoder.com> integration library."
s.description = "Zencoder <http://zencoder.com> integration library."
s.rubyforge_project = "zencoder"
s.add_dependency "multi_json"
s.add_development_dependency "shoulda"
s.add_development_dependency "mocha"
s.add_development_dependency "webmock"
s.files = Dir.glob("bin/**/*") + Dir.glob("lib/**/*") + %w(LICENSE README.markdown Rakefile)
s.require_path = "lib"
end