-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdamage.gemspec
More file actions
17 lines (17 loc) · 820 Bytes
/
damage.gemspec
File metadata and controls
17 lines (17 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Gem::Specification.new do |s|
s.name = 'damage'
s.version = `git describe --tags`.chomp().gsub(/^v/, "").gsub(/-([0-9]+)-g/, '-\1.g')
s.date = `git show HEAD --format='format:%ci' -s | awk '{ print $1}'`.chomp()
s.summary = "Your ultimate script for maintaining stable branches and releasing your project."
s.description = "Damage (DAtabase MetA GEnerator) is a ruby script to create simple and fast databases schemes to use as internal storage in any applications."
s.authors = ["Nicolas Morey"]
s.email = 'nicolas@morey.ovh'
s.executables << 'damage'
s.files = [
"COPYING",
"README.md",
] + Dir['lib/**/*.rb'].keep_if { |file| File.file?(file) }
s.homepage =
'https://github.com/nmorey/git-maintain'
s.license = 'GPL-2.0-or-later'
end