Sha256: c87a400ec93f149400594919e319fde1dd2f8c12f586a1fa83d41f46f2dee4fd
Contents?: true
Size: 1.49 KB
Versions: 2
Compression:
Stored size: 1.49 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'station_master/version' Gem::Specification.new do |spec| spec.name = "station_master" spec.version = StationMaster::VERSION spec.authors = ["Stefano Ordine"] spec.email = ["stefano.ordine@gmail.com"] spec.summary = "This gem provide an interface to an api from www.viaggiatreno.it public site." spec.description = "This gem provide an interface to an api from www.viaggiatreno.it public site. This project exploits the api that the site uses to build up the front-end side, to retrieve real-time information on italian rail system and to provide an more convinient interface to that information." spec.homepage = "https://github.com/StefanoOrdine/station_master" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.required_ruby_version = '~> 2.0' spec.add_development_dependency "rake", "~> 10.3" spec.add_development_dependency "rspec", "~> 3.1" spec.add_development_dependency "pry", "~> 0.10" spec.add_development_dependency "pry-nav", "~> 0.2" spec.add_development_dependency "webmock", "~> 1.19" spec.add_runtime_dependency "multi_json", "~> 1.10" spec.add_runtime_dependency "activesupport", "~> 4.1" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
station_master-0.1.3 | station_master.gemspec |
station_master-0.1.2 | station_master.gemspec |