forked from engineyard/engineyard-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
33 lines (30 loc) · 1.07 KB
/
Rakefile
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
require 'rubygems'
require 'bundler'
begin
Bundler.setup(:default, :development, :test)
rescue Bundler::BundlerError => e
$stderr.puts e.message
$stderr.puts "Run `bundle install` to install missing gems"
exit e.status_code
end
require 'rake'
PKG_FILES = FileList[
'[a-zA-Z]*',
'app/**/*',
'example/public/engineyard-theme/**/*',
'lib/**/*'
]
require 'jeweler'
Jeweler::Tasks.new do |gem|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
gem.name = "engineyard-theme"
gem.homepage = "http://github.com/engineyard/engineyard-theme"
gem.license = "MIT"
gem.summary = %Q{A gem providing helper methods and assets to make any site look like http://engineyard.com}
gem.description = %Q{View helpers 'header' and 'footer', along with an assets generator to make any site look like http://engineyard.com}
gem.email = ["[email protected]", "[email protected]"]
gem.authors = ["Paul Campbell", "Dr Nic Williams"]
gem.files = PKG_FILES.to_a
gem.add_runtime_dependency 'rails', '~> 3'
end
Jeweler::RubygemsDotOrgTasks.new