-
Notifications
You must be signed in to change notification settings - Fork 1
/
ruby-vibe.gemspec
34 lines (27 loc) · 970 Bytes
/
ruby-vibe.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
31
32
33
34
# frozen_string_literal: true
require_relative 'lib/ruby-vibe/version'
Gem::Specification.new do |spec|
spec.name = 'ruby-vibe'
spec.version = RubyVibe::VERSION
spec.authors = ['Adem Dinarevic']
spec.email = ['ademdinarevic@gmail.com']
spec.homepage = 'https://github.com/ademdc/ruby-vibe'
spec.license = 'MIT'
spec.summary = 'Ruby client for Viber API'
spec.description = 'Ruby client for Viber API'
spec.files = %w[
lib/ruby_vibe.rb
lib/ruby-vibe/bot.rb
lib/ruby-vibe/client.rb
lib/ruby-vibe/url.rb
lib/ruby-vibe/shortcuts.rb
lib/ruby-vibe/version.rb
]
spec.bindir = ['bin']
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.2.0'
spec.add_runtime_dependency 'rest-client', '~> 2.1.0'
spec.add_development_dependency 'pry', '~> 0.14.1'
spec.add_development_dependency 'rake', '~> 13.0.3'
spec.add_development_dependency 'rspec', '~> 3.0'
end