Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions linux_admin.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'linux_admin/version'

Gem::Specification.new do |spec|

# Dynamically create the authors information {name => e-mail}
authors_hash = Hash[`git log --no-merges --reverse --format='%an,%ae'`.split("\n").uniq.collect {|i| i.split(",")}]

spec.name = "linux_admin"
spec.version = LinuxAdmin::VERSION
spec.authors = ["Brandon Dunne"]
spec.email = ["brandondunne@hotmail.com"]
spec.authors = authors_hash.keys
spec.email = authors_hash.values
spec.description = %q{
LinuxAdmin is a module to simplify management of linux systems.
It should be a single place to manage various system level configurations,
Expand Down