Sha256: 76028bd65a854059e426e5c078a269c6967d88b063dff6029674773aa204257f

Contents?: true

Size: 1.3 KB

Versions: 2

Compression:

Stored size: 1.3 KB

Contents

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

Gem::Specification.new do |s|
  s.name        = "cohort_scope"
  s.version     = CohortScope::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Seamus Abshere", "Andy Rossmeissl", "Derek Kastner"]
  s.email       = ["seamus@abshere.net"]
  s.homepage    = "https://github.com/seamusabshere/cohort_scope"
  s.summary     = %Q{Provides cohorts (in the form of ActiveRecord scopes) that dynamically widen until they contain a certain number of records.}
  s.description = %Q{Provides big_cohort, which widens by finding the constraint that eliminates the most records and removing it. Also provides strict_cohort, which widens by eliminating constraints in order.}

  s.rubyforge_project = "cohort_scope"

  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 "activesupport", '>=3'
  s.add_runtime_dependency "activerecord", '>=3'
  s.add_development_dependency 'test-unit'
  s.add_development_dependency 'mysql2'
  s.add_development_dependency 'rake'
  # s.add_development_dependency 'ruby-debug'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cohort_scope-0.2.3 cohort_scope.gemspec
cohort_scope-0.2.2 cohort_scope.gemspec