Sha256: a8fd677d4470582dc61b68a9c48dbf401177fd5f18f554e1383b1585ad01d538

Contents?: true

Size: 1.18 KB

Versions: 10

Compression:

Stored size: 1.18 KB

Contents

# 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 = 'karen.e.lundgren@gmail.com'
  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

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
bootstrap_leather-0.10.14 Rakefile
bootstrap_leather-0.10.13 Rakefile
bootstrap_leather-0.10.11 Rakefile
bootstrap_leather-0.10.10 Rakefile
bootstrap_leather-0.10.9 Rakefile
bootstrap_leather-0.10.8 Rakefile
bootstrap_leather-0.10.7 Rakefile
bootstrap_leather-0.10.6 Rakefile
bootstrap_leather-0.10.5 Rakefile
bootstrap_leather-0.10.4 Rakefile