Sha256: 10d4f43fb1b257fc4946cefef8ec5f9f64e158154baf22688ce364731b3bb175

Contents?: true

Size: 1.15 KB

Versions: 2

Compression:

Stored size: 1.15 KB

Contents

# coding: utf-8
# frozen_string_literal: true

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cru_lib/version'

Gem::Specification.new do |spec|
  spec.name          = 'cru_lib'
  spec.version       = CruLib::VERSION
  spec.authors       = ['Josh Starcher']
  spec.email         = ['josh.starcher@gmail.com']
  spec.summary       = 'Map ActiveRecord to Global Registry'
  spec.description   = 'Provides a common interface for mapping ActiveRecord ' \
                       'models to Global Registry entities and relationships.'
  spec.homepage      = 'https://github.com/CruGlobal/cru_lib'
  spec.license       = 'MIT'

  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ['lib']

  spec.add_dependency 'global_registry', '~> 1.0'

  spec.add_runtime_dependency 'rails', '>= 4.2.0'
  spec.add_runtime_dependency 'activesupport', '>= 4.2.0'

  spec.add_development_dependency 'bundler', '~> 1.11'
  spec.add_development_dependency 'rake', '~> 10.0'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cru_lib-0.1.1 cru_lib.gemspec
cru_lib-0.1.0 cru_lib.gemspec