-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Page all output, and remove --limit options
Fixes #156
- Loading branch information
1 parent
95d07e1
commit 9931eda
Showing
14 changed files
with
308 additions
and
461 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
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
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 |
---|---|---|
|
@@ -5,28 +5,30 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | |
require "friends/version" | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "friends" | ||
spec.version = Friends::VERSION | ||
spec.authors = ["Jacob Evelyn"] | ||
spec.email = ["[email protected]"] | ||
spec.summary = "Spend time with the people you care about." | ||
spec.description = "Spend time with the people you care about. "\ | ||
"Introvert-tested. Extrovert-approved." | ||
spec.homepage = "https://github.com/JacobEvelyn/friends" | ||
spec.license = "MIT" | ||
spec.name = "friends" | ||
spec.version = Friends::VERSION | ||
spec.authors = ["Jacob Evelyn"] | ||
spec.email = ["[email protected]"] | ||
spec.summary = "Spend time with the people you care about." | ||
spec.description = "Spend time with the people you care about. "\ | ||
"Introvert-tested. Extrovert-approved." | ||
spec.homepage = "https://github.com/JacobEvelyn/friends" | ||
spec.license = "MIT" | ||
|
||
spec.files = `git ls-files -z`.split("\x0") | ||
spec.executables = ["friends"] | ||
spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) | ||
spec.require_paths = ["lib"] | ||
|
||
# We need Ruby 2.0's keyword arguments and default UTF-8 encoding. | ||
# We need Ruby 2.1's default-less keyword arguments and default UTF-8 | ||
# encoding. | ||
spec.required_ruby_version = ">= 2.1" | ||
|
||
spec.add_dependency "chronic", "~> 0.10" | ||
spec.add_dependency "gli", "~> 2.14" | ||
spec.add_dependency "paint", "~> 2.0" | ||
spec.add_dependency "semverse", "~> 2.0" | ||
spec.add_dependency "tty-pager", "~> 0.11" | ||
|
||
spec.add_development_dependency "bundler", "~> 1.6" | ||
spec.add_development_dependency "coveralls", "~> 0.8" | ||
|
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
Oops, something went wrong.