-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebug_logger.gemspec
More file actions
14 lines (14 loc) · 837 Bytes
/
debug_logger.gemspec
File metadata and controls
14 lines (14 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Gem::Specification.new do |s|
s.name = 'debug_logger'
s.version = '0.2.1'
s.date = '2021-12-13'
s.summary = 'DebugLogger is a simple gem to help debug.'
s.description = 'This very simple gem was created to simplify your life in creating your log in your programs. It simply allows you to display logs of different colors, whether for a web application like RubyOnRails or for scripts.'
s.authors = ['Antonin Touron']
s.email = 'antonintouron@gmail.com'
s.files = ['lib/debug_logger.rb', 'lib/debug_logger/debug_logger_utils.rb', 'lib/debug_logger/log.rb']
s.homepage = 'https://rubygems.org/gems/debug_logger'
s.license = 'MIT'
s.metadata = { 'source_code_uri' => 'https://github.com/antonintouron/debug_logger' }
s.add_development_dependency 'rspec', '~> 3.7'
end