require File.expand_path("../lib/periscope_rails/version", __FILE__) # Provide a simple gemspec so you can easily use your enginex # project in your rails apps through git. Gem::Specification.new do |s| s.name = "periscope_rails" s.homepage = "http://periscopeapp.herokuapp.com/" s.authors = [ "Tom O'Neill", "Harry Glaser" ] s.email = [ "tom.oneill@live.com", "harry.glaser@gmail.com" ] s.summary = "Rails API for Periscope Database Viewer" s.description = "Periscope allows you to query your production database. The gem provides the API for Periscope to communicate with your Rails app." s.files = Dir["{app,lib,config}/**/*"] + ["MIT-LICENSE", "Rakefile", "Gemfile", "README.rdoc"] s.version = "0.0.5" s.add_dependency "activesupport" , "~> 3.0" s.add_dependency "rails" , "~> 3.0" s.files = `git ls-files`.split("\n") s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact s.require_path = 'lib' end