Sha256: da823d6f4d1eeaf97d73050ad64db23ae766f25cdfc12d5ae405753ff5b51f4d
Contents?: true
Size: 714 Bytes
Versions: 9
Compression:
Stored size: 714 Bytes
Contents
# frozen_string_literal: true require 'rubygems' require 'bundler' begin Bundler.setup(:default, :development) rescue Bundler::BundlerError => e warn e.message warn "Run `bundle install` to install missing gems" exit e.status_code end require 'rake' require 'juwelier' Juwelier::Tasks.new do |gem| gem.name = "punk" gem.homepage = "https://github.com/kranzky/punk" gem.license = "Unlicense" gem.summary = "Punk! is an omakase web framework for rapid prototyping." gem.description = "" gem.email = "lloyd@kranzky.com" gem.authors = ["Lloyd Kranzky"] gem.required_ruby_version = ">= 2.1" end Juwelier::RubygemsDotOrgTasks.new require 'yard' YARD::Rake::YardocTask.new task default: :clean
Version data entries
9 entries across 9 versions & 1 rubygems
Version | Path |
---|---|
punk-0.3.6 | Rakefile |
punk-0.3.5 | Rakefile |
punk-0.3.4 | Rakefile |
punk-0.3.3 | Rakefile |
punk-0.3.2 | Rakefile |
punk-0.3.1 | Rakefile |
punk-0.2.0 | Rakefile |
punk-0.1.4 | Rakefile |
punk-0.1.3 | Rakefile |