-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebuga_helper.gemspec
More file actions
22 lines (17 loc) · 888 Bytes
/
debuga_helper.gemspec
File metadata and controls
22 lines (17 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require_relative 'lib/debuga_helper/version'
Gem::Specification.new do |spec|
spec.name = "debuga_helper"
spec.version = DebugaHelper::VERSION
spec.authors = ["David Lyons Garcia"]
spec.email = ["davidlyonsgarcia@gmail.com"]
spec.summary = %q{A helper module for debugging purposes in Rails applications.}
spec.description = %q{Provides debuga and debuga_shinny methods for logging debug messages with caller info and shiny titles.}
spec.homepage = "https://github.com/EhtuCom/debuga_helper"
spec.license = "MIT"
spec.files = Dir.glob("lib/**/*") + %w[README.md]
spec.require_paths = ["lib"]
spec.add_dependency "rails", ">= 5.0"
spec.add_dependency "colorize", ">= 0.8"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/EhtuCom/debuga_helper"
end