diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9f30a35 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +pkg/* +*.gem +.bundle diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..05f6efc --- /dev/null +++ b/Gemfile @@ -0,0 +1,4 @@ +source "http://rubygems.org" + +# Specify your gem's dependencies in zdevice.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/zdevice.rb b/lib/zdevice.rb new file mode 100644 index 0000000..1ba3f1e --- /dev/null +++ b/lib/zdevice.rb @@ -0,0 +1,3 @@ +module Zdevice + # Your code goes here... +end diff --git a/lib/zdevice/version.rb b/lib/zdevice/version.rb new file mode 100644 index 0000000..d8c2968 --- /dev/null +++ b/lib/zdevice/version.rb @@ -0,0 +1,3 @@ +module Zdevice + VERSION = "0.0.1" +end diff --git a/zdevice.gemspec b/zdevice.gemspec new file mode 100644 index 0000000..913b379 --- /dev/null +++ b/zdevice.gemspec @@ -0,0 +1,21 @@ +# -*- encoding: utf-8 -*- +$:.push File.expand_path("../lib", __FILE__) +require "zdevice/version" + +Gem::Specification.new do |s| + s.name = "zdevice" + s.version = Zdevice::VERSION + s.platform = Gem::Platform::RUBY + s.authors = ["TODO: Write your name"] + s.email = ["TODO: Write your email address"] + s.homepage = "http://rubygems.org/gems/zdevice" + s.summary = %q{TODO: Write a gem summary} + s.description = %q{TODO: Write a gem description} + + s.rubyforge_project = "zdevice" + + 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