forked from HappyFunCorp/happy_seed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
happy_seed.gemspec
26 lines (22 loc) · 1.04 KB
/
happy_seed.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "happy_seed/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "happy_seed"
s.version = HappySeed::VERSION
s.authors = ["Will Schenk", "Ricky Reusser"]
s.email = ["[email protected]"]
s.homepage = "http://seed.happyfuncorp.com"
s.summary = "HappySeed is a project that will build up a rails apps using some common best practices."
s.description = "HappySeed is a project that will build up a rails apps using some common best practices."
s.license = "MIT"
s.files = Dir["{app,bin,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc", "happy_seed.rb", "happy_seed.txt", "lib/**/.*"]
s.test_files = Dir["spec/**/*"]
s.executables << "happy_seed"
s.add_dependency "rails", "~> 5.0.0"
s.add_dependency "thor"
s.add_dependency 'rack', '~> 2.x'
s.add_development_dependency "sqlite3"
s.add_development_dependency "rspec-rails", "~> 3.5.0.beta3"
end