forked from airhorns/trestle-omniauth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrestle-omniauth.gemspec
More file actions
26 lines (21 loc) · 957 Bytes
/
trestle-omniauth.gemspec
File metadata and controls
26 lines (21 loc) · 957 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
26
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "trestle/omniauth/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "trestle-omniauth"
spec.version = Trestle::Omniauth::VERSION
spec.authors = ["Harry Brundage"]
spec.email = ["harry.brundage@gmail.com"]
spec.homepage = "https://github.com/airhorns/trestle-omniauth"
spec.description = "Use omniauth auth providers to authenticate with Trestle"
spec.summary = "Use omniauth auth providers to authenticate with Trestle"
spec.license = "LGPLv3"
spec.files = Dir["{app,config,db,lib}/**/*", "LICENSE", "Rakefile", "README.md"]
spec.add_dependency "rails", ">= 5.0.0"
spec.add_dependency "trestle", "~> 0.10.0"
spec.add_dependency "omniauth", "~> 2.0"
spec.add_dependency "hashie", ">= 4.1.0"
spec.add_development_dependency "sqlite3"
spec.add_development_dependency "cssbundling-rails"
end