Update gemspec according to Bundler scaffold

This commit is contained in:
Dzmitry Plashchynski
2015-03-01 14:06:48 +02:00
parent dde4350917
commit 8306b3e0ae
+17 -9
View File
@@ -1,14 +1,22 @@
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-
require File.expand_path('../lib/periodicity/version', __FILE__) require File.expand_path('../lib/periodicity/version', __FILE__)
Gem::Specification.new do |gem| Gem::Specification.new do |s|
gem.name = 'periodicity' s.name = "periodicity"
gem.version = Periodicity::VERSION s.version = Periodicity::VERSION
s.authors = ["Dzmitry Plashchynski"]
s.email = ["plashchynski@gmail.com"]
s.homepage = "https://github.com/plashchynski/periodicity"
gem.description = gem.summary = "Job scheduler for Rails" gem.description = gem.summary = "Job scheduler for Rails"
gem.authors = ["Dzmitry Plashchynski"]
gem.email = "plashchynski@gmail.com" s.required_rubygems_version = ">= 1.3.6"
gem.files = `git ls-files`.split("\n") s.rubyforge_project = "periodicity"
gem.require_paths = ["lib"]
gem.homepage = "https://github.com/plashchynski/periodicity" s.add_runtime_dependency "activejob"
gem.license = "Apache-2.0" s.add_development_dependency "bundler", ">= 1.0.0"
s.add_development_dependency "rspec"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
end end