Skip to content

Commit

Permalink
gemize
Browse files Browse the repository at this point in the history
  • Loading branch information
ywen2 committed Oct 29, 2011
1 parent 1749a2c commit 8793325
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.gem
.bundle
Gemfile.lock
pkg/*
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 campfire-growl.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'
20 changes: 20 additions & 0 deletions campfire-growl.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "campfire-growl/version"

Gem::Specification.new do |s|
s.name = "campfire-growl"
s.version = Campfire::Growl::VERSION
s.authors = ["Yi Wen"]
s.email = ["hayafirst@gmail.com"]
s.homepage = ""
s.summary = %q{TODO: Write a gem summary}
s.description = %q{TODO: Write a gem description}

s.rubyforge_project = "campfire-growl"

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/campfire-growl.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
require "campfire-growl/version"

module Campfire
module Growl
# Your code goes here...
end
end
5 changes: 5 additions & 0 deletions lib/campfire-growl/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module Campfire
module Growl
VERSION = "0.0.1"
end
end

0 comments on commit 8793325

Please sign in to comment.