forked from swoker/bahn.rb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bahn.gemspec
28 lines (23 loc) · 952 Bytes
/
bahn.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# encoding: utf-8
require File.expand_path("../lib/bahn/version", __FILE__)
require 'base64'
Gem::Specification.new do |s|
s.name = "bahn.rb"
s.version = Bahn::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Simon Woker"]
s.email = Base64.decode64("Z2l0aHViQHNpbW9ud29rZXIuZGU=\n")
s.homepage = "https://github.com/swoker/bahn.rb"
s.summary = "Bahn ÖPNV information"
s.description = "Load connections for public transportation from the m.bahn.de website."
s.required_rubygems_version = ">= 1.3.6"
# If you have other dependencies, add them here
s.add_runtime_dependency "json", ["~> 1.6"]
s.add_runtime_dependency "mechanize"
s.add_runtime_dependency "activesupport"
s.add_runtime_dependency "geocoder"
s.add_development_dependency "rake", [">= 0"]
# If you need to check in files that aren't .rb files, add them here
s.files = Dir["{lib}/**/*.rb", "bin/*", "LICENSE", "*.md"]
s.require_path = 'lib'
end