diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4040c6c --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.gem +.bundle +Gemfile.lock +pkg/* diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..201b0d7 --- /dev/null +++ b/Gemfile @@ -0,0 +1,4 @@ +source "http://rubygems.org" + +# Specify your gem's dependencies in ruby-avm-library.gemspec +gemspec diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..14cfe0b --- /dev/null +++ b/Rakefile @@ -0,0 +1,2 @@ +require 'bundler' +Bundler::GemHelper.install_tasks diff --git a/lib/ruby-avm-library.rb b/lib/ruby-avm-library.rb new file mode 100644 index 0000000..b06b07d --- /dev/null +++ b/lib/ruby-avm-library.rb @@ -0,0 +1,7 @@ +module Ruby + module Avm + module Library + # Your code goes here... + end + end +end diff --git a/lib/ruby-avm-library/version.rb b/lib/ruby-avm-library/version.rb new file mode 100644 index 0000000..a9a02cb --- /dev/null +++ b/lib/ruby-avm-library/version.rb @@ -0,0 +1,7 @@ +module Ruby + module Avm + module Library + VERSION = "0.0.1" + end + end +end diff --git a/ruby-avm-library.gemspec b/ruby-avm-library.gemspec new file mode 100644 index 0000000..71910fe --- /dev/null +++ b/ruby-avm-library.gemspec @@ -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