This repository was archived by the owner on Oct 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheucalypt.gemspec
39 lines (33 loc) · 1.63 KB
/
eucalypt.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
32
33
34
35
36
37
38
39
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "eucalypt/version"
Gem::Specification.new do |spec|
spec.name = "eucalypt"
spec.version = Eucalypt::VERSION
spec.authors = ["Edwin Onuonga"]
spec.email = ["[email protected]"]
spec.summary = %q{Micro-framework and CLI for the generation and maintenance of structured Sinatra web applications.}
spec.homepage = "https://eucalypt.gitbook.io/eucalypt/"
spec.license = "MIT"
spec.files = Dir.glob('lib/**/*', File::FNM_DOTMATCH) + %w[Gemfile LICENSE README.md Rakefile eucalypt.gemspec bin/eucalypt]
spec.bindir = "bin"
spec.executables = spec.files.grep(%r{^bin/}) {|f| File.basename(f)}
spec.require_paths = ["lib"]
spec.required_ruby_version = "~> 2.5"
spec.add_development_dependency "bundler", "~> 1.16"
spec.add_development_dependency "rake", "~> 12.3"
spec.add_development_dependency "rspec", "~> 3.7"
spec.add_development_dependency "regexp-examples", "~> 1.4"
spec.add_development_dependency "colorize", "~> 0.8"
spec.add_runtime_dependency "string-builder", "~> 2.3"
spec.add_runtime_dependency "activesupport", "~> 5.2"
spec.add_runtime_dependency "activerecord", "~> 5.2"
spec.add_runtime_dependency "front_matter_parser", "0.2.0"
spec.add_runtime_dependency "thor", "~> 0.20"
spec.add_runtime_dependency "sinatra", "~> 2.0"
spec.add_runtime_dependency "rerun", "~> 0.13"
spec.metadata = {
"documentation_uri" => "https://eucalypt.gitbook.io/eucalypt/",
"source_code_uri" => "https://github.com/eucalypt/eucalypt/"
}
end