Sha256: cfb373ca510a989618d1530b1e30fd9710621bb3e9fc788c9f9308efc47f60eb

Contents?: true

Size: 1004 Bytes

Versions: 2

Compression:

Stored size: 1004 Bytes

Contents

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 = PeriscopeRails.const_get(:VERSION)

  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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
periscope_rails-0.0.13 periscope_rails.gemspec
periscope_rails-0.0.12 periscope_rails.gemspec