-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebsockethook.gemspec
More file actions
25 lines (21 loc) · 961 Bytes
/
websockethook.gemspec
File metadata and controls
25 lines (21 loc) · 961 Bytes
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
# encoding: UTF-8
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
Gem::Specification.new do |s|
s.name = 'websockethook'
s.version = '0.2.02'
s.platform = Gem::Platform::RUBY
s.authors = ['Maciej Skierkowski']
s.email = ['maciej@factor.io']
s.homepage = 'http://web.sockethook.io/'
s.summary = 'A library for use the free web.sockethook.io service'
s.description = 'Listen for web hooks in your app without creating a web service.'
s.files = Dir.glob('lib/**/*.rb')
s.license = 'MIT'
s.test_files = Dir.glob('./{test,spec,features}/*.rb')
s.require_paths = ['lib']
s.add_runtime_dependency 'websocket-client-simple', '~> 0.3.0'
s.add_development_dependency 'rspec', '~> 3.4.0'
s.add_development_dependency 'codeclimate-test-reporter', '~> 0.5.2'
s.add_development_dependency 'rake', '~> 11.2.2'
s.add_development_dependency 'rest-client', '~> 1.8.0'
end