Sha256: 10a609bb5b3ffbba35ad31158a3e3c6ed341393a4f69121585630a4bf760772c
Contents?: true
Size: 1.08 KB
Versions: 8
Compression:
Stored size: 1.08 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "trackman/version" Gem::Specification.new do |s| s.name = "trackman" s.version = Trackman::VERSION s.authors = ["Jeremy Fabre", "Emanuel Petre"] s.email = ["jeremy.fabre@hotmail.com", "petreemanuel@gmail.com"] s.homepage = "https://github.com/SynApps/trackman" s.summary = "Client version of the Trackman addon on Heroku" s.description = "Trackman hosts your maintenances and app-down pages (503s) and lets you keep them in your current development environment so that you can focus on delivering and not configuring." #s.rubyforge_project = "trackman" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.add_runtime_dependency "rest-client" s.add_runtime_dependency "json" s.add_runtime_dependency "nokogiri" s.add_runtime_dependency "rack" s.add_development_dependency "rspec" end
Version data entries
8 entries across 8 versions & 1 rubygems