Sha256: e1a821649e15ebe1cd60060813de00fbf2e29c23a3aeaf70865daa464b9be0f8
Contents?: true
Size: 1.08 KB
Versions: 1
Compression:
Stored size: 1.08 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = "undo" spec.version = IO.read("VERSION") spec.authors = ["Alexander Paramonov"] spec.email = ["alexander.n.paramonov@gmail.com"] spec.summary = %q{Reverts operation made upon object} spec.description = %q{ The Undo restores previous object state. Lightweight, modular and very flexible library that works as with Rails, as with plain Ruby. } spec.homepage = "http://github.com/AlexParamonov/undo" 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 "virtus", "~> 1.0" spec.add_dependency "json", ">= 1.7" spec.add_development_dependency 'bundler', '~> 1.0' spec.add_development_dependency "rake" spec.add_development_dependency "rspec", ">= 3.0.0.beta1" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
undo-1.0.0 | undo.gemspec |