-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathonotole.gemspec
36 lines (31 loc) · 1.24 KB
/
onotole.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
# -*- encoding: utf-8 -*-
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'onotole/version'
require 'date'
Gem::Specification.new do |s|
s.required_ruby_version = ">= #{Onotole::RUBY_VERSION}"
s.authors = %w(kvokka thoughtbot)
s.date = Date.today.strftime('%Y-%m-%d')
s.description = <<-HERE
Onotole is a Rails project generator that you can upgrade. Use Onotole if you're
in a rush to build something amazing or just want to test out some new
technologes. You can choose more than 50 gems to add and get all of it with init
settings and be free from init confings copy/paste
HERE
s.email = '[email protected]'
s.executables = ['onotole']
s.extra_rdoc_files = %w(README.md LICENSE)
s.files = `git ls-files`.split("\n")
s.homepage = 'http://github.com/kvokka/onotole'
s.license = 'MIT'
s.name = 'onotole'
s.rdoc_options = ['--charset=UTF-8']
s.require_paths = ['lib']
s.summary = 'Generate a Rails app using Onotole knowledge with kvokka fingers.'
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.version = Onotole::VERSION
s.add_dependency 'bundler', '~> 1.3'
s.add_dependency 'rails', Onotole::RAILS_VERSION
s.add_development_dependency 'rspec', '~> 3.2'
end