# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "usaidwat/version" Gem::Specification.new do |s| s.name = "usaidwat" s.version = USaidWat::VERSION s.authors = ["Michael Dippery"] s.email = ["michael@monkey-robot.com"] s.homepage = "https://github.com/mdippery/usaidwat" s.summary = %q{Answers the age-old question, "Where does a Redditor comment the most?"} s.description = %q{View a user's last 100 Reddit comments, organized by subreddit.} s.rubyforge_project = "usaidwat" 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 'json', '>= 1.6.5' s.add_development_dependency 'rspec', '~> 2.8.0' end