forked from socketry/utopia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutopia.gemspec
More file actions
44 lines (34 loc) · 1.53 KB
/
utopia.gemspec
File metadata and controls
44 lines (34 loc) · 1.53 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
33
34
35
36
37
38
39
40
41
42
43
44
# -*- encoding: utf-8 -*-
require_relative 'lib/utopia/version'
Gem::Specification.new do |spec|
spec.name = 'utopia'
spec.version = Utopia::VERSION
spec.authors = ['Samuel Williams']
spec.email = ['samuel.williams@oriontransfer.co.nz']
spec.description = <<-EOF
Utopia is a website generation framework which provides a robust set of tools
to build highly complex dynamic websites. It uses the filesystem heavily for
content and provides frameworks for interacting with files and directories as
structure representing the website.
EOF
spec.summary = %q{Utopia is a framework for building dynamic content-driven websites.}
spec.homepage = 'https://github.com/ioquatix/utopia'
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.required_ruby_version = '~> 2.2'
spec.add_dependency 'trenni', '~> 3.0'
spec.add_dependency 'mime-types', '~> 3.0'
spec.add_dependency 'samovar', '~> 1.2'
spec.add_dependency 'rainbow', '~> 2.1'
spec.add_dependency 'rack', '~> 2.0'
spec.add_dependency 'http-accept', '~> 1.6'
spec.add_dependency 'mail', '~> 2.6'
spec.add_dependency 'concurrent-ruby', '~> 1.0'
spec.add_development_dependency 'bundler', '~> 1.3'
spec.add_development_dependency 'rspec', '~> 3.6'
spec.add_development_dependency 'puma'
spec.add_development_dependency 'rake'
end