forked from thoughtbot/suspenders
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsuspenders.gemspec
39 lines (34 loc) · 1.36 KB
/
suspenders.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
34
35
36
37
38
39
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'suspenders/version'
require 'date'
Gem::Specification.new do |s|
s.required_ruby_version = ">= #{Suspenders::RUBY_VERSION}"
s.required_rubygems_version = ">= 2.7.4"
s.authors = ['thoughtbot', 'weLaika']
s.date = Date.today.strftime('%Y-%m-%d')
s.description = <<-HERE
weLaika's fork of the famous thoughbot suspenders gem.
HERE
s.email = 'info@welaika.com'
s.executables = ['welaika-suspenders']
s.extra_rdoc_files = %w[README.md LICENSE]
s.files = `git ls-files`.split("\n")
s.homepage = 'http://github.com/welaika/welaika-suspenders'
s.metadata = {
'changelog_uri' => 'https://github.com/welaika/welaika-suspenders/blob/master/CHANGELOG_WELAIKA.md',
'source_code_uri' => 'https://github.com/welaika/welaika-suspenders'
}
s.license = 'MIT'
s.name = 'welaika-suspenders'
s.rdoc_options = ['--charset=UTF-8']
s.require_paths = ['lib']
s.summary = "Generate a Rails app using thoughtbot's best practices."
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.version = Suspenders::VERSION
s.add_dependency 'rails', Suspenders::RAILS_VERSION
s.add_dependency 'bundler', '>= 2'
s.add_development_dependency 'rspec', '~> 3.8'
s.add_development_dependency 'pry-byebug', '~> 3.6'
s.add_development_dependency 'awesome_print', '~> 1.8'
end