Sha256: ff6c852376fccca9884d28c2d0665ff2d564334a23a6f658a690431c347db722

Contents?: true

Size: 870 Bytes

Versions: 2

Compression:

Stored size: 870 Bytes

Contents

Gem::Specification.new do |s|

  s.name = 'rufus-lru'

  s.version = File.read(
    File.expand_path('../lib/rufus/lru.rb', __FILE__)
  ).match(/ VERSION *= *['"]([^'"]+)/)[1]

  s.platform = Gem::Platform::RUBY
  s.authors = [ 'John Mettraux' ]
  s.email = [ 'jmettraux@gmail.com' ]
  s.homepage = 'http://github.com/jmettraux/rufus-lru'
  s.rubyforge_project = 'rufus'
  s.license = 'MIT'
  s.summary = 'A Hash with a max size, controlled by a LRU mechanism'

  s.description = %{
LruHash class, a Hash with a max size, controlled by a LRU mechanism
  }.strip

  #s.files = `git ls-files`.split("\n")
  s.files = Dir[
    'Makefile',
    'lib/**/*.rb', #'spec/**/*.rb', 'test/**/*.rb',
    '*.gemspec', '*.txt', '*.rdoc', '*.md'
  ]

  #s.add_runtime_dependency 'tzinfo', '>= 0.3.23'

  s.add_development_dependency 'rspec', '>= 3.4.0'

  s.require_path = 'lib'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rufus-lru-1.1.0 rufus-lru.gemspec
rufus-lru-1.0.7 rufus-lru.gemspec