Sha256: 53bf4cb240ad08b54143a2c74fc1f5139b42ee5195fdb77c2ecafcc1e4b1887b
Contents?: true
Size: 1.45 KB
Versions: 4
Compression:
Stored size: 1.45 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.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
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
station_master-0.1.0 | station_master.gemspec |
station_master-0.0.12 | station_master.gemspec |
station_master-0.0.11 | station_master.gemspec |
station_master-0.0.10 | station_master.gemspec |