-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcreate_ruby_app.gemspec
More file actions
26 lines (23 loc) · 1.11 KB
/
create_ruby_app.gemspec
File metadata and controls
26 lines (23 loc) · 1.11 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
$LOAD_PATH.unshift(File.expand_path("lib", __dir__))
require "create_ruby_app/version"
Gem::Specification.new do |s|
s.name = "create-ruby-app"
s.version = CreateRubyApp::VERSION
s.date = "2019-03-11"
s.summary = "Scaffold Ruby applications effortlessly"
s.description = "create-ruby-app is an opinionated tool for scaffolding Ruby applications"
s.author = ["Mathias Jean Johansen"]
s.email = "mathias@mjj.io"
s.files = Dir["lib/**/*.rb", "lib/**/*.erb", "bin/*",
"LICENSE", "*.md"]
s.test_files = Dir["spec/**/*.rb"]
s.executables << "create-ruby-app"
s.homepage = "https://github.com/majjoha/create-ruby-app"
s.license = "ISC"
s.required_ruby_version = ">= 3.4.5"
s.add_runtime_dependency "dry-cli", "~> 1.0"
s.add_runtime_dependency "logger", "~> 1.6"
s.add_development_dependency "rake", "~> 13.3.0"
s.add_development_dependency "rspec", "~> 3.13.1"
s.add_development_dependency "simplecov", "~> 0.22.0"
end