Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ddubyah committed May 31, 2011
0 parents commit e4e35e7
Show file tree
Hide file tree
Showing 7 changed files with 53 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
*.gem
.bundle
Gemfile.lock
pkg/*

## MAC OS
.DS_Store
.Trashes
.com.apple.timemachine.supported
.fseventsd
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source "http://rubygems.org"

# Specify your gem's dependencies in guard-krammer.gemspec
gemspec
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require 'bundler/gem_tasks'
22 changes: 22 additions & 0 deletions guard-krammer.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "guard/guard-krammer/version"

Gem::Specification.new do |s|
s.name = "guard-krammer"
s.version = Guard::Krammer::VERSION
s.authors = ["Darren Wallace"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{Markdown folder > html folder conversion}
s.description = %q{Watches a source folder and converts markdown docs to html docs in a target folder}

s.rubyforge_project = "guard-krammer"

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]


end
7 changes: 7 additions & 0 deletions lib/guard/krammer.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
require "guard-krammer/version"

module Guard
module Krammer
# Your code goes here...
end
end
4 changes: 4 additions & 0 deletions lib/guard/krammer/templates/Guardfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
guard 'krammer'
watch(%r{^source_docs/.+\.md})
watch(%r{^source_docs/.+\.markdown})
end
5 changes: 5 additions & 0 deletions lib/guard/krammer/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module Guard
module Krammer
VERSION = "0.0.1"
end
end

0 comments on commit e4e35e7

Please sign in to comment.