forked from grsmv/canvas-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcanvas-api.gemspec
More file actions
32 lines (26 loc) · 1.11 KB
/
canvas-api.gemspec
File metadata and controls
32 lines (26 loc) · 1.11 KB
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
# coding: utf-8
require './lib/canvas-api/version'
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |s|
s.name = 'canvas-api'
s.version = Canvas::API::VERSION.dup
s.summary = 'Getting data from Canvas by API'
s.description = 'Getting data from Canvas by API'
s.platform = Gem::Platform::RUBY
s.authors = ['Serhii Herasymov']
s.email = ['sgeras@softserveinc.com']
s.homepage = 'https://github.com/grsmv/canvas-api'
s.files = `git ls-files`.split($\).delete_if { |file| file =~ /^\.\w/ }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ['lib']
s.add_development_dependency 'rspec', '3.2.0'
s.add_development_dependency 'rubocop', '0.29.1'
s.add_development_dependency 'simplecov', '0.9.2'
s.add_development_dependency 'fuubar', '2.0.0'
s.add_runtime_dependency 'httparty', '0.13.5'
s.add_runtime_dependency 'parallel', '1.6.0'
s.add_runtime_dependency 'addressable', '2.3.8'
s.add_runtime_dependency 'vcr', '2.9.3'
s.add_runtime_dependency 'webmock', '1.20.4'
end