forked from thoughtbot/suspenders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
suspenders.gemspec
35 lines (30 loc) · 1.2 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
# -*- 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']
s.date = Date.today.strftime('%Y-%m-%d')
s.description = <<-HERE
Suspenders is a base Rails project that you can upgrade. It is used by
thoughtbot to get a jump start on a working app. Use Suspenders if you're in a
rush to build something amazing; don't use it if you like missing deadlines.
HERE
s.email = '[email protected]'
s.executables = ['suspenders']
s.extra_rdoc_files = %w[README.md LICENSE]
s.files = `git ls-files`.split("\n")
s.homepage = 'http://github.com/thoughtbot/suspenders'
s.license = 'MIT'
s.name = '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 'bitters', '~> 1.7'
s.add_dependency 'rails', Suspenders::RAILS_VERSION
s.add_development_dependency 'rspec', '~> 3.2'
end