Sha256: 6cf2dea007d182919ca5529b3daf1a2d18619e99c1e9f2a729031a72f5afc2c3
Contents?: true
Size: 1.02 KB
Versions: 5
Compression:
Stored size: 1.02 KB
Contents
require_relative "../lookbook" namespace :lookbook do desc "Run the rspec tests" task :test do sh "bundle exec rspec" end namespace :test do desc "Start a server to view the test app" task :serve do sh "bundle exec rackup" end end namespace :previews do desc "Preparse the previews" task :preparse do Lookbook::Engine.parser.parse puts "Lookbook preview parsing complete" end end namespace :release do desc "Bump the Lookbook engine version number" task :bump_version, [:version] do |t, args| filename = Lookbook::Engine.root.join("lib/lookbook/version.rb") current_version = Lookbook::VERSION.to_s new_version = args[:version].sub("v", "").tr("-", ".") file = File.open(filename) contents = file.read File.write(filename, contents.gsub(current_version, new_version)) end desc "Build Gem and push to RubyGems" task :build_and_push do sh("rake build && gem push pkg/lookbook-#{Lookbook::VERSION}.gem") end end end
Version data entries
5 entries across 5 versions & 1 rubygems