Sha256: 8a33c05d24486ca1f38638d92ea33e1b5921c063ddff609a1d70049188de96a3

Contents?: true

Size: 1.01 KB

Versions: 3

Compression:

Stored size: 1.01 KB

Contents

# frozen_string_literal: true

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

Gem::Specification.new do |spec|
  spec.name          = 'cacchern'
  spec.version       = Cacchern::VERSION
  spec.authors       = ['Shuhei TAKASUGI']
  spec.email         = ['shuhei.takasugi@gmail.com']

  spec.summary       = ' operate Redis like ActiveRecord interface '
  spec.description   = ' operate Redis like ActiveRecord interface '
  spec.homepage      = 'https://github.com/shuyuhey/cacchern'
  spec.license       = 'MIT'

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

  spec.add_development_dependency 'activemodel'
  spec.add_development_dependency 'bundler'
  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'redis', '~> 4.0.0'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cacchern-0.0.4 cacchern.gemspec
cacchern-0.0.3 cacchern.gemspec
cacchern-0.0.2 cacchern.gemspec