Sha256: c117b73cca6d2fbd3e6dad20cc401f73c00914c2008a41e9bfe9cdbf5027ce97
Contents?: true
Size: 1.01 KB
Versions: 1
Compression:
Stored size: 1.01 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-wrapper" spec.version = IO.read("VERSION") spec.authors = ["Alexander Paramonov"] spec.email = ["alexander.n.paramonov@gmail.com"] spec.summary = %q{Observes changes and stores object state before the change} spec.description = %q{Observes changes and stores object state before the change} spec.homepage = "http://github.com/AlexParamonov/undo-wrapper" 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 "undo", "~> 1.0" 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-wrapper-0.0.1 | undo-wrapper.gemspec |