Sha256: af8487e2b12b5c7bf73509e64af5968aeb54c8468139ec7f942225ffa8e067d6

Contents?: true

Size: 735 Bytes

Versions: 6

Compression:

Stored size: 735 Bytes

Contents

$:.unshift File.join(File.dirname(__FILE__), 'lib')
require 'arel-helpers/version'

Gem::Specification.new do |s|
  s.name     = "arel-helpers"
  s.version  = ::ArelHelpers::VERSION
  s.authors  = ["Cameron Dutro"]
  s.email    = ["camertron@gmail.com"]
  s.homepage = "http://github.com/camertron"

  s.description = s.summary = "Useful tools to help construct database queries with ActiveRecord and Arel."

  s.platform = Gem::Platform::RUBY
  s.has_rdoc = true

  if ENV["AR"]
    s.add_dependency 'activerecord', ENV["AR"]
  else
    s.add_dependency 'activerecord', '>= 3.1.0', '< 5'
  end

  s.require_path = 'lib'
  s.files = Dir["{lib,spec}/**/*", "Gemfile", "History.txt", "README.md", "Rakefile", "arel-helpers.gemspec"]
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
arel-helpers-2.2.0 arel-helpers.gemspec
arel-helpers-2.1.1 arel-helpers.gemspec
arel-helpers-2.1.0 arel-helpers.gemspec
arel-helpers-2.0.2 arel-helpers.gemspec
arel-helpers-2.0.1 arel-helpers.gemspec
arel-helpers-2.0.0 arel-helpers.gemspec