-
Notifications
You must be signed in to change notification settings - Fork 0
/
protosite.gemspec
26 lines (22 loc) · 958 Bytes
/
protosite.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "protosite/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "protosite"
s.version = Protosite::VERSION
s.authors = ["jejacks0n"]
s.email = ["jejacks0n@gmail.com"]
s.homepage = "https://github.com/jejacks0n/protosite"
s.summary = "Protosite: An elegant and customizable vue based CMA"
s.description = ["Protosite: An elegant and customizable vue based CMA"].join(" ")
s.license = "MIT"
s.files = Dir["{app,lib}/**/*"] + ["MIT-LICENSE", "README.md"]
s.add_dependency "railties", [">= 3.2.5", "< 6"]
s.add_dependency "graphql", ">= 1.8.5"
s.add_dependency "graphql-errors", ">= 0.2.0"
s.add_dependency "graphiql-rails", ">= 1.4.11"
s.add_dependency "warden", ">= 1.2.7"
s.add_dependency "bcrypt", ">= 3.1.12"
s.add_dependency "schemattr", ">= 0.0.1"
end