Sha256: f27ba74d5bfe84b858253918285669ae49d9e44a1a340b70460bd20efa4988ba
Contents?: true
Size: 1.02 KB
Versions: 7
Compression:
Stored size: 1.02 KB
Contents
require 'rubygems' require 'rake' ## # Create gem begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "baron" gem.summary = %Q{Minimalist, yet full-featured, blog engine in 400 lines of code.} gem.description = %Q{What's in the box: (1) Publish to Heroku using Git (2) Author articles in markdown (3) Article categories (4) Multiple permalink formats supported (5) Redirects (6) Advanced SEO optimizations and Google Analytics/ Webmaster Tools support. Uses Rack, RSpec, Bootstrap, JQuery, Disqus, Thin} gem.email = "nbuggia@gmail.com" gem.homepage = "https://github.com/nbuggia/baron-blog-engine-gem" gem.authors = ["Nathan Buggia"] gem.add_development_dependency "rspec" gem.add_dependency "rack" end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler (or a dependency) not available. Install with: sudo gem install jeweler" end ## # Run RSpec tests require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) task :default => :test task :test => [:check_dependencies, :spec]
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
baron-1.0.7 | Rakefile |
baron-1.0.6 | Rakefile |
baron-1.0.5 | Rakefile |
baron-1.0.4 | Rakefile |
baron-1.0.3 | Rakefile |
baron-1.0.2 | Rakefile |
baron-1.0.1 | Rakefile |