Skip to content

Commit

Permalink
add initial version of gemspec file
Browse files Browse the repository at this point in the history
  • Loading branch information
ngarbezza committed Oct 26, 2013
1 parent 91ba699 commit 5f718a0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions gobstones.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
lib = File.expand_path '../lib/', __FILE__
$:.unshift lib unless $:.include?(lib)

Gem::Specification.new do |spec|
spec.name = 'gobstones'
spec.version = '0.0.1'
spec.licenses = ['GPLv3']
spec.authors = ['Nahuel Garbezza']
spec.email = ['[email protected]']
spec.homepage = 'http://nahuelgarbezza.com.ar/gobstones-rb/'
spec.summary = %q{Ruby implementation of the Gobstones programming language}
spec.description = %q{Ruby implementation of the Gobstones programming language}

spec.required_ruby_version = '>= 1.9.3'
spec.required_rubygems_version = '>= 1.3.6'

spec.add_development_dependency 'rspec', '~> 2'

spec.files = `git ls-files`.split $/
spec.test_files = spec.files.grep %r{^spec/}

spec.executables = %w(gobstones)
spec.require_paths = %w('lib')
end

0 comments on commit 5f718a0

Please sign in to comment.