-
Notifications
You must be signed in to change notification settings - Fork 0
/
genesis_rails.gemspec
32 lines (26 loc) · 1.19 KB
/
genesis_rails.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "genesis_rails/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "genesis_rails"
s.version = GenesisRails::VERSION
s.authors = ["kelvinst"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/kelvinst/genesis_rails"
s.summary = "A complete set of tools for building rails applications"
s.description = "This gem is a set of generators, templates and helpers to
start a brand new rails project without too many code to
write. If you need more details, check the project README."
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", ">= 4.2"
s.add_development_dependency "pry"
s.add_development_dependency "rspec-rails"
gem.post_install_message = <<-MESSAGE
! The 'genesis_rails' gem has been deprecated and has been replaced by 'silmarails'.
! See: https://rubygems.org/gems/silmarails
! And: https://github.com/kelvinst/silmarails
MESSAGE
end