-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathjohnhenry.gemspec
36 lines (31 loc) · 1.41 KB
/
johnhenry.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "johnhenry/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "johnhenry"
s.version = JohnHenry::VERSION
s.authors = ["Adam Derewecki"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/derwiki/johnhenry"
s.summary = "Launch a new Bootstrap/Rails 4 app on Heroku in minutes."
s.description = "
Launch a landing page on Heroku in less than 10 minutes with JohnHenry. This
gem sets up bootstrap and provides Bootstrapped user management pages with
Devise. JohnHenry also includes a payment form that works with Stripe and is
ready to go immediately.".gsub(/\n/, ' ')
s.licenses = ['MIT']
s.post_install_message = "Thanks for installing the JohnHenry gem. To install to the current project, please run `bundle exec rake johnhenry:install`"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", ">= 4"
s.add_dependency "sass-rails", "~> 4.0.0"
s.add_dependency "haml-rails"
s.add_dependency 'bootstrap-sass', '~> 3.0.3.0'
s.add_dependency "jquery-rails"
s.add_dependency "devise"
s.add_dependency "stripe"
s.add_dependency "github-markup"
s.add_dependency "github-markdown"
s.add_development_dependency "sqlite3"
end