Initial commit

This commit is contained in:
Thibault Jouan 2013-07-17 17:04:59 +00:00
commit c31bcf71ad
5 changed files with 35 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/Gemfile.lock

3
Gemfile Normal file
View File

@ -0,0 +1,3 @@
source 'https://rubygems.org'
gemspec

6
lib/producer/core.rb Normal file
View File

@ -0,0 +1,6 @@
require 'producer/core/version'
module Producer
module Core
end
end

View File

@ -0,0 +1,5 @@
module Producer
module Core
VERSION = '0.0.1'
end
end

20
producer-core.gemspec Normal file
View File

@ -0,0 +1,20 @@
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH << lib unless $LOAD_PATH.include? lib
require 'producer/core/version'
Gem::Specification.new do |s|
s.name = 'producer-core'
s.version = Producer::Core::VERSION
s.summary = "producer-core-#{Producer::Core::VERSION}"
s.description = <<-eoh.gsub(/^ +/, '')
blah
eoh
s.homepage = 'https://rubygems.org/gems/producer-core'
s.authors = 'Thibault Jouan'
s.email = 'tj@a13.fr'
s.files = `git ls-files`.split $/
s.test_files = s.files.grep /\A(spec|features)\//
s.executables = s.files.grep(/\Abin\//) { |f| File.basename(f) }
end