Skip to content

Commit

Permalink
add a gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
rubysolo committed May 27, 2011
1 parent 5cdf7a9 commit 4616d12
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
Empty file added .gemtest
Empty file.
3 changes: 3 additions & 0 deletions lib/qrio/version.rb
@@ -0,0 +1,3 @@
module Qrio
VERSION = "0.0.1"
end
22 changes: 22 additions & 0 deletions qrio.gemspec
@@ -0,0 +1,22 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "qrio/version"

Gem::Specification.new do |s|
s.name = "qrio"
s.version = Qrio::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Solomon White"]
s.email = ["rubysolo@gmail.com"]
s.homepage = "http://github.com/rubysolo/qrio"
s.summary = %q{QR Code decoder}
s.description = %q{Decode QR Codes. Like a boss.}

s.add_runtime_dependency "chunky_png"

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 4616d12

Please sign in to comment.