-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathdevise-activegraph.gemspec
More file actions
27 lines (23 loc) · 1.01 KB
/
devise-activegraph.gemspec
File metadata and controls
27 lines (23 loc) · 1.01 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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "devise/active_graph/version"
Gem::Specification.new do |s|
s.name = "devise-activegraph"
s.version = Devise::ActiveGraph::VERSION
s.authors = ["Ben Jackson", "Bobby Calderwood"]
s.email = ["ben@lissomsolutions.com"]
s.homepage = "http://github.com/benjackson/devise-neo4j"
s.summary = %q{Devise ORM for ActiveGraph}
s.description = %q{ActiveGraph integration with the Devise authentication framework}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency("warden", ">= 1.2.1")
s.add_dependency("orm_adapter", "~> 0.5.0")
s.add_dependency("bcrypt", ">= 3.0")
s.add_dependency("railties", ">= 4.2")
s.add_dependency("activegraph", ">= 10.0.0")
s.add_dependency("devise", ">= 3.5.2")
s.add_dependency("zeitwerk")
end