-
Notifications
You must be signed in to change notification settings - Fork 4
/
adhearsion-drb.gemspec
30 lines (25 loc) · 1.22 KB
/
adhearsion-drb.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
30
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "adhearsion/drb/version"
Gem::Specification.new do |s|
s.name = "adhearsion-drb"
s.version = Adhearsion::Drb::VERSION
s.authors = ["juandebravo", "Ben Langfeld", "Jason Goecke"]
s.homepage = ""
s.summary = %q{This gem is an Adhearsion plugin that handles the Drb related stuff}
s.description = %q{This gem is an Adhearsion plugin that handles the Drb related stuff}
s.rubyforge_project = "adhearsion-drb"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_runtime_dependency "adhearsion", ["~> 2.0"]
s.add_runtime_dependency "i18n", ">= 0.5.0"
s.add_runtime_dependency "jruby-openssl" if RUBY_PLATFORM == 'java'
s.add_development_dependency "rspec", "~> 2.7.0"
s.add_development_dependency "flexmock"
s.add_development_dependency "guard-rspec"
s.add_development_dependency "rake", ">= 0.9.2"
s.add_development_dependency "thor", "~> 0.14.0"
end