bundler gem

This commit is contained in:
John Bintz 2011-03-03 17:36:12 -05:00
parent da9a83d935
commit 34ec07e604
6 changed files with 45 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*.gem
.bundle
Gemfile.lock
pkg/*

4
Gemfile Normal file
View File

@ -0,0 +1,4 @@
source "http://rubygems.org"
# Specify your gem's dependencies in ruby-avm-library.gemspec
gemspec

2
Rakefile Normal file
View File

@ -0,0 +1,2 @@
require 'bundler'
Bundler::GemHelper.install_tasks

7
lib/ruby-avm-library.rb Normal file
View File

@ -0,0 +1,7 @@
module Ruby
module Avm
module Library
# Your code goes here...
end
end
end

View File

@ -0,0 +1,7 @@
module Ruby
module Avm
module Library
VERSION = "0.0.1"
end
end
end

21
ruby-avm-library.gemspec Normal file
View File

@ -0,0 +1,21 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "ruby-avm-library/version"
Gem::Specification.new do |s|
s.name = "ruby-avm-library"
s.version = Ruby::Avm::Library::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["TODO: Write your name"]
s.email = ["TODO: Write your email address"]
s.homepage = ""
s.summary = %q{TODO: Write a gem summary}
s.description = %q{TODO: Write a gem description}
s.rubyforge_project = "ruby-avm-library"
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