-
Notifications
You must be signed in to change notification settings - Fork 34
/
raygun.gemspec
28 lines (23 loc) · 1.1 KB
/
raygun.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
File.expand_path("lib", __dir__).tap do |lib|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
end
require "raygun/version"
Gem::Specification.new do |gem|
gem.name = "raygun"
gem.version = Raygun::VERSION
gem.authors = ["Christian Nelson", "Jonah Williams", "Jason Wadsworth"]
gem.email = ["[email protected]"]
gem.description = "Carbon Five Rails application generator"
gem.summary = "Generates and customizes Rails applications with Carbon Five best practices baked in."
gem.homepage = "https://github.com/carbonfive/raygun"
gem.license = "MIT"
gem.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.required_ruby_version = ">= 2.5"
gem.add_development_dependency "bundler", "~> 2.0"
gem.add_development_dependency "rake", "~> 13.0"
gem.add_development_dependency "rspec", "~> 3.9"
gem.add_development_dependency "rubocop", "0.79.0"
end