-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbiran.gemspec
33 lines (27 loc) · 1.13 KB
/
biran.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
29
30
31
32
33
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "biran/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "biran"
s.version = Biran::VERSION
s.authors = ["javierg", "brlanier", "seancookr"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/amco/biran"
s.summary = "Helper for generating config generate tasks."
s.description = "Biran is the guy that will help you generate config files for your rail app."
s.license = "MIT"
s.required_ruby_version = ">= 2.7.0"
s.metadata = {
"rubygems_mfa_required" => "true",
}
s.files = Dir["{app,config,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency 'railties', '>= 5.0.7'
s.add_dependency "activesupport", '>= 5.0.7'
s.add_development_dependency "rails", "~> 5.0", ">= 5.0.7"
s.add_development_dependency "bundler", "~> 2.1"
s.add_development_dependency 'rspec', '~> 3.7'
s.add_development_dependency 'nokogiri', '~> 1.15'
end