forked from epitron/best_errors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfavorite_things.gemspec
28 lines (21 loc) · 1.05 KB
/
favorite_things.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "favorite_things"
s.version = File.read("VERSION").strip
s.date = File.mtime("VERSION").strftime("%Y-%m-%d")
s.authors = ["Chris Gahan", "Charlie Somerville", "Josh Teneycke"]
s.description = "Rain drops on roses, whiskers on kittens, silenced logs, and repl pretty printin's!"
s.summary = "Tired of your fingers being worn down to a nubbin from having to require all of your favorite dev tools in your Gemfile for every Rails project? Then this gem is for you!"
s.homepage = "https://github.com/jteneycke/favorite_things"
s.licenses = ["WTFPL"]
s.files = `git ls-files`.split($/)
s.extra_rdoc_files = ["README.md"]
s.require_paths = ["lib"]
s.rubygems_version = "2.4.5"
s.add_dependency "pry-rails"
s.add_dependency "awesome_print"
s.add_dependency "quiet_assets"
s.add_dependency "did_you_mean"
s.add_dependency "table_print"
end