Skip to content

Commit

Permalink
gemfify
Browse files Browse the repository at this point in the history
  • Loading branch information
reddavis committed Dec 6, 2010
1 parent 4a28b4d commit 8c7afbc
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -4,4 +4,5 @@
db/*.sqlite3
log/*.log
tmp/**/*
uploads/**/*
uploads/**/*
pkg/**
4 changes: 4 additions & 0 deletions Gemfile
@@ -0,0 +1,4 @@
source "http://rubygems.org"

# Specify your gem's dependencies in admin_gem.gemspec
gemspec
3 changes: 3 additions & 0 deletions Rakefile
@@ -1,6 +1,9 @@
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'bundler'

Bundler::GemHelper.install_tasks

desc 'Default: run unit tests.'
task :default => :test
Expand Down
3 changes: 3 additions & 0 deletions lib/uuid_extension/version.rb
@@ -0,0 +1,3 @@
module UuidExtension
VERSION = "1.0.0"
end
19 changes: 19 additions & 0 deletions uuid_extension.gemspec
@@ -0,0 +1,19 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "uuid_extension/version"

Gem::Specification.new do |s|
s.name = "uuid_extension"
s.version = UuidExtension::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Sebastian"]
s.email = [""]
s.homepage = ""
s.summary = %q{A before create that set the ID using uuid}
s.description = %q{A before create that set the ID using uuid}

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

0 comments on commit 8c7afbc

Please sign in to comment.