From 367ea60d3d4c083e70f7928d186db2b510cc8649 Mon Sep 17 00:00:00 2001 From: Dzmitry Plashchynski Date: Sat, 28 Feb 2015 12:01:32 +0200 Subject: [PATCH] add gemspec --- bin/periodicity | 2 ++ lib/periodicity.rb | 0 lib/periodicity/version.rb | 3 +++ periodicity.gemspec | 14 ++++++++++++++ 4 files changed, 19 insertions(+) create mode 100644 bin/periodicity create mode 100644 lib/periodicity.rb create mode 100644 lib/periodicity/version.rb create mode 100644 periodicity.gemspec diff --git a/bin/periodicity b/bin/periodicity new file mode 100644 index 0000000..fd7fe14 --- /dev/null +++ b/bin/periodicity @@ -0,0 +1,2 @@ +#!/usr/bin/env ruby + diff --git a/lib/periodicity.rb b/lib/periodicity.rb new file mode 100644 index 0000000..e69de29 diff --git a/lib/periodicity/version.rb b/lib/periodicity/version.rb new file mode 100644 index 0000000..228a220 --- /dev/null +++ b/lib/periodicity/version.rb @@ -0,0 +1,3 @@ +module Periodicity + VERSION = "0.0.1" +end diff --git a/periodicity.gemspec b/periodicity.gemspec new file mode 100644 index 0000000..677bf7e --- /dev/null +++ b/periodicity.gemspec @@ -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