Sha256: a7bf7ab2280f19e63ff517cca85bb8aadafb375f5d9fc7df83deeaab194714a6

Contents?: true

Size: 1012 Bytes

Versions: 3

Compression:

Stored size: 1012 Bytes

Contents

# -*- encoding: utf-8 -*-
require File.expand_path("../lib/tunable/version", __FILE__)

Gem::Specification.new do |s|
  s.name        = "tunable"
  s.version     = Tunable::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ['Tomás Pollak']
  s.email       = ['tomas@forkhq.com']
  s.homepage    = "https://github.com/tomas/tunable"
  s.summary     = "Pluggable settings for your AR models."
  s.description = "Pluggable settings for your AR models."

  s.required_rubygems_version = ">= 1.3.6"
  # s.rubyforge_project         = "tunable"

  s.add_runtime_dependency "activerecord", "~> 4.2.x"
  s.add_runtime_dependency "activesupport", "~> 4.2.x"

  s.add_development_dependency "bundler" #, '~> 1.0', '>= 1.0.0'
  s.add_development_dependency "rspec" #, '~> 3.0', '>= 3.0.0'
  s.add_development_dependency "sqlite3", '< 1.4.x'

  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

3 entries across 3 versions & 1 rubygems

Version Path
tunable-0.0.6 tunable.gemspec
tunable-0.0.5 tunable.gemspec
tunable-0.0.4 tunable.gemspec