add gemspec

This commit is contained in:
Dzmitry Plashchynski
2015-02-28 12:01:32 +02:00
commit 367ea60d3d
4 changed files with 19 additions and 0 deletions

2
bin/periodicity Normal file
View File

@@ -0,0 +1,2 @@
#!/usr/bin/env ruby

0
lib/periodicity.rb Normal file
View File

View File

@@ -0,0 +1,3 @@
module Periodicity
VERSION = "0.0.1"
end

14
periodicity.gemspec Normal file
View File

@@ -0,0 +1,14 @@
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/periodicity/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'periodicity'
gem.version = Periodicity::VERSION
gem.description = gem.summary = "Job scheduler for Rails"
gem.authors = ["Dzmitry Plashchynski"]
gem.email = "plashchynski@gmail.com"
gem.files = `git ls-files`.split("\n")
gem.require_paths = ["lib"]
gem.homepage = "https://github.com/plashchynski/periodicity"
gem.license = "Apache-2.0"
end