Added gemspec
This commit is contained in:
parent
fa3f27e6c3
commit
9f70cc3c8c
58
fakefs.gemspec
Normal file
58
fakefs.gemspec
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
# Generated by jeweler
|
||||||
|
# DO NOT EDIT THIS FILE
|
||||||
|
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
||||||
|
# -*- encoding: utf-8 -*-
|
||||||
|
|
||||||
|
Gem::Specification.new do |s|
|
||||||
|
s.name = %q{fakefs}
|
||||||
|
s.version = "0.1.2"
|
||||||
|
|
||||||
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
||||||
|
s.authors = ["Chris Wanstrath"]
|
||||||
|
s.date = %q{2009-09-13}
|
||||||
|
s.description = %q{A fake filesystem. Use it in your tests.}
|
||||||
|
s.email = %q{chris@ozmm.org}
|
||||||
|
s.extra_rdoc_files = [
|
||||||
|
"LICENSE",
|
||||||
|
"README.markdown"
|
||||||
|
]
|
||||||
|
s.files = [
|
||||||
|
"LICENSE",
|
||||||
|
"README.markdown",
|
||||||
|
"Rakefile",
|
||||||
|
"lib/fakefs.rb",
|
||||||
|
"lib/fakefs/base.rb",
|
||||||
|
"lib/fakefs/dir.rb",
|
||||||
|
"lib/fakefs/fake/dir.rb",
|
||||||
|
"lib/fakefs/fake/file.rb",
|
||||||
|
"lib/fakefs/fake/symlink.rb",
|
||||||
|
"lib/fakefs/file.rb",
|
||||||
|
"lib/fakefs/file_system.rb",
|
||||||
|
"lib/fakefs/fileutils.rb",
|
||||||
|
"lib/fakefs/safe.rb",
|
||||||
|
"lib/fakefs/version.rb",
|
||||||
|
"test/fakefs_test.rb",
|
||||||
|
"test/safe_test.rb",
|
||||||
|
"test/verify.rb"
|
||||||
|
]
|
||||||
|
s.homepage = %q{http://github.com/defunkt/fakefs}
|
||||||
|
s.rdoc_options = ["--charset=UTF-8"]
|
||||||
|
s.require_paths = ["lib"]
|
||||||
|
s.rubygems_version = %q{1.3.1}
|
||||||
|
s.summary = %q{A fake filesystem. Use it in your tests.}
|
||||||
|
s.test_files = [
|
||||||
|
"test/safe_test.rb",
|
||||||
|
"test/verify.rb",
|
||||||
|
"test/fakefs_test.rb"
|
||||||
|
]
|
||||||
|
|
||||||
|
if s.respond_to? :specification_version then
|
||||||
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
||||||
|
s.specification_version = 2
|
||||||
|
|
||||||
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
||||||
|
else
|
||||||
|
end
|
||||||
|
else
|
||||||
|
end
|
||||||
|
end
|
@ -1,6 +1,6 @@
|
|||||||
module FakeFS
|
module FakeFS
|
||||||
module Version
|
module Version
|
||||||
VERSION = "0.1.0"
|
VERSION = "0.1.1"
|
||||||
|
|
||||||
def self.to_s
|
def self.to_s
|
||||||
VERSION
|
VERSION
|
||||||
|
Loading…
Reference in New Issue
Block a user