Sha256: d3bcec20bb5d0a316707df338f15c6b08d92a1b7038e2537900ab25db457c8cd
Contents?: true
Size: 887 Bytes
Versions: 2
Compression:
Stored size: 887 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.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[ 'Rakefile', 'lib/**/*.rb', 'spec/**/*.rb', 'test/**/*.rb', '*.gemspec', '*.txt', '*.rdoc', '*.md' ] #s.add_runtime_dependency 'tzinfo', '>= 0.3.23' s.add_development_dependency 'rake' s.add_development_dependency 'rspec', '>= 2.7.0' s.require_path = 'lib' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rufus-lru-1.0.5 | rufus-lru.gemspec |
rufus-lru-1.0.4 | rufus-lru.gemspec |