-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsimba.gemspec
More file actions
19 lines (16 loc) · 753 Bytes
/
simba.gemspec
File metadata and controls
19 lines (16 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/simba/version", __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Saito"]
gem.email = ["[email protected]"]
gem.description = %q{simba is a generator for sinatra applications.}
gem.summary = %q{simba aim to set up ruby off rails best practice.}
gem.homepage = "https://github.com/SaitoWu/simba"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "simba"
gem.require_paths = ["lib"]
gem.version = Simba::VERSION
gem.add_dependency("thor", "~> 0.18")
end