-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
41 lines (36 loc) · 1.18 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
33
34
35
36
37
38
39
40
41
# frozen_string_literal: true
begin
require 'bundler/setup'
rescue LoadError
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
APP_RAKEFILE = File.expand_path('../spec/dummy/Rakefile', __FILE__)
# load 'rails/tasks/engine.rake'
#
# load 'rails/tasks/statistics.rake'
#
# require 'bundler/gem_tasks'
require 'juwelier'
Juwelier::Tasks.new do |gem|
# gem is a Gem::Specification...
# see http://guides.rubygems.org/specification-reference/ for more options
gem.name = 'bootstrap_leather'
gem.homepage = 'http://www.gemvein.com/museum/cases/bootstrap_leather'
gem.license = 'MIT'
gem.summary = %(BootstrapLeather helps create apps using Twitter Bootstrap)
gem.description = 'BootstrapLeather is a collection of view helpers and '\
'scaffold generators that makes it easier to create apps using Twitter '\
'Bootstrap'
gem.email = '[email protected]'
gem.authors = ['Karen Lundgren']
# gem.version = BootstrapLeather::VERSION
# dependencies defined in Gemfile
end
Juwelier::RubygemsDotOrgTasks.new
begin
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
task default: :spec
rescue LoadError
# no rspec available
end