Skip to content
This repository has been archived by the owner on Mar 9, 2021. It is now read-only.

Commit

Permalink
Added gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
etagwerker committed May 9, 2016
1 parent 5816b25 commit 2782652
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 0 deletions.
25 changes: 25 additions & 0 deletions infractores.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'infractores/version'

Gem::Specification.new do |spec|
spec.name = "infractores"
spec.version = Infractores::VERSION
spec.authors = ["Ernesto Tagwerker", "Mauro Otonelli"]
spec.email = ["[email protected]", "[email protected]"]

spec.summary = %q{Track parking violations reported via Twitter}
spec.description = %q{Track any kind of violations via Twitter with a geolocated tweet}
spec.homepage = "https://github.com/ombulabs/infractores"
spec.license = "MIT"

spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "bin"
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_development_dependency "bundler", "~> 1.12"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.0"
end
1 change: 1 addition & 0 deletions lib/infractores.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require "infractores/version"
3 changes: 3 additions & 0 deletions lib/infractores/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module Infractores
VERSION = "1.0.0"
end
7 changes: 7 additions & 0 deletions spec/infractores_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
require "spec_helper"

describe Infractores do
it "has a version number" do
expect(Infractores::VERSION).not_to be nil
end
end

0 comments on commit 2782652

Please sign in to comment.