Initial commit
This commit is contained in:
commit
c31bcf71ad
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
/Gemfile.lock
|
6
lib/producer/core.rb
Normal file
6
lib/producer/core.rb
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
require 'producer/core/version'
|
||||||
|
|
||||||
|
module Producer
|
||||||
|
module Core
|
||||||
|
end
|
||||||
|
end
|
5
lib/producer/core/version.rb
Normal file
5
lib/producer/core/version.rb
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
module Producer
|
||||||
|
module Core
|
||||||
|
VERSION = '0.0.1'
|
||||||
|
end
|
||||||
|
end
|
20
producer-core.gemspec
Normal file
20
producer-core.gemspec
Normal 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
|
Loading…
x
Reference in New Issue
Block a user