-
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #137 from flavorjones/flavorjones-update-gemspec
dev: gemspec has better desc and uses require_relative
- Loading branch information
Showing
1 changed file
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,4 @@ | ||
# coding: utf-8 | ||
lib = File.expand_path("../lib", __FILE__) | ||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
require "mini_portile2/version" | ||
require_relative "lib/mini_portile2/version" | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "mini_portile2" | ||
|
@@ -10,8 +7,12 @@ Gem::Specification.new do |spec| | |
spec.authors = ["Luis Lavena", "Mike Dalessio", "Lars Kanis"] | ||
spec.email = "[email protected]" | ||
|
||
spec.summary = "Simplistic port-like solution for developers" | ||
spec.description = "Simplistic port-like solution for developers. It provides a standard and simplified way to compile against dependency libraries without messing up your system." | ||
spec.summary = "Simple autoconf and cmake builder for developers" | ||
spec.description = <<~TEXT | ||
Simple autoconf and cmake builder for developers. It provides a standard way to compile against | ||
dependency libraries without requiring system-wide installation. It also simplifies | ||
vendoring and cross-compilation by providing a consistent build interface. | ||
TEXT | ||
|
||
spec.homepage = "https://github.com/flavorjones/mini_portile" | ||
spec.licenses = ["MIT"] | ||
|