Sha256: 6b2f84f6f32930af451c6dc3620d8b129e1eae012fb78c7e8e03d295bbd1ce19
Contents?: true
Size: 953 Bytes
Versions: 1
Compression:
Stored size: 953 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "mountain_goat/version" Gem::Specification.new do |s| s.name = "mountain-goat" s.version = MountainGoat::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Geoffrey Hayes", "drawn.to"] s.email = ["geoff@drawn.to"] s.homepage = "http://github.com/hayesgm/mountain-goat" s.summary = "A/B Testing to the edge" s.description = "A/B test everything and get awesome analytics" s.rubyforge_project = "mountain-goat" 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"] # Developmnet Dependencies s.add_development_dependency(%q<rspec>, ["~> 2.2.0"]) s.add_development_dependency(%q<rack-test>, [">= 0.5.6"]) end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mountain-goat-0.0.1 | mountain-goat.gemspec |