Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
achiurizo committed Sep 14, 2010
1 parent 73b113d commit 8c6a8cd
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
pkg/*
*.gem
.bundle
4 changes: 4 additions & 0 deletions Gemfile
@@ -0,0 +1,4 @@
source :gemcutter

# Specify your gem's dependencies in terminitor.gemspec
gemspec
2 changes: 2 additions & 0 deletions Rakefile
@@ -0,0 +1,2 @@
require 'bundler'
Bundler::GemHelper.install_tasks
3 changes: 3 additions & 0 deletions lib/terminitor.rb
@@ -0,0 +1,3 @@
module Terminitor
# Your code goes here...
end
3 changes: 3 additions & 0 deletions lib/terminitor/version.rb
@@ -0,0 +1,3 @@
module Terminitor
VERSION = "0.0.1"
end
22 changes: 22 additions & 0 deletions terminitor.gemspec
@@ -0,0 +1,22 @@
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/terminitor/version", __FILE__)

Gem::Specification.new do |s|
s.name = "terminitor"
s.version = Terminitor::VERSION
s.platform = Gem::Platform::RUBY
s.authors = []
s.email = []
s.homepage = "http://rubygems.org/gems/terminitor"
s.summary = "TODO: Write a gem summary"
s.description = "TODO: Write a gem description"

s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "terminitor"

s.add_development_dependency "bundler", ">= 1.0.0"

s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
end

0 comments on commit 8c6a8cd

Please sign in to comment.