-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathomniauth-canvas.gemspec
31 lines (24 loc) · 1.02 KB
/
omniauth-canvas.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "omniauth-canvas/version"
Gem::Specification.new do |gem|
gem.name = "omniauth-canvas"
gem.version = OmniAuth::Canvas::VERSION
gem.authors = "Justin Ball"
gem.email = "[email protected]"
gem.description = "OmniAuth Oauth2 strategy for Instructure Canvas."
gem.summary = "OmniAuth Oauth2 strategy for Instructure Canvas."
gem.homepage = "https://github.com/atomicjolt/omniauth-canvas"
gem.license = "MIT"
gem.required_ruby_version = ">= 2.5"
gem.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
gem.test_files = Dir["test/**/*"]
gem.require_paths = ["lib"]
gem.add_dependency "omniauth", "~> 2.0"
gem.add_dependency "omniauth-oauth2", "~> 1.8"
gem.add_development_dependency "rake"
gem.add_development_dependency "rack-test"
gem.add_development_dependency "rspec"
gem.add_development_dependency "byebug"
end