Skip to content

Commit

Permalink
update gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
smtlaissezfaire committed Dec 16, 2010
1 parent e30c5f5 commit 7c19c1a
Showing 1 changed file with 50 additions and 48 deletions.
98 changes: 50 additions & 48 deletions fakefs.gemspec
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -5,70 +5,72 @@


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{fakefs} s.name = %q{fakefs}
s.version = "0.2.1" s.version = "0.3.0"


s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Chris Wanstrath"] s.authors = ["Chris Wanstrath", "Scott Taylor", "Jeff Hodges", "Pat Nakajima"]
s.date = %q{2010-09-18} s.date = %q{2010-12-15}
s.description = %q{A fake filesystem. Use it in your tests.} s.description = %q{A fake filesystem. Use it in your tests.}
s.email = %q{chris@ozmm.org} s.email = %q{chris@ozmm.org}
s.extra_rdoc_files = [ s.extra_rdoc_files = [
"LICENSE", "LICENSE",
"README.markdown" "README.markdown"
] ]
s.files = [ s.files = [
".autotest", ".autotest",
".gitignore", ".gitignore",
"CONTRIBUTORS", "CONTRIBUTORS",
"LICENSE", "LICENSE",
"README.markdown", "README.markdown",
"Rakefile", "Rakefile",
"lib/fakefs.rb", "fakefs.gemspec",
"lib/fakefs/base.rb", "lib/fakefs.rb",
"lib/fakefs/dir.rb", "lib/fakefs/base.rb",
"lib/fakefs/fake/dir.rb", "lib/fakefs/dir.rb",
"lib/fakefs/fake/file.rb", "lib/fakefs/fake/dir.rb",
"lib/fakefs/fake/symlink.rb", "lib/fakefs/fake/file.rb",
"lib/fakefs/file.rb", "lib/fakefs/fake/symlink.rb",
"lib/fakefs/file_system.rb", "lib/fakefs/file.rb",
"lib/fakefs/file_test.rb", "lib/fakefs/file_system.rb",
"lib/fakefs/fileutils.rb", "lib/fakefs/file_test.rb",
"lib/fakefs/safe.rb", "lib/fakefs/fileutils.rb",
"lib/fakefs/spec_helpers.rb", "lib/fakefs/safe.rb",
"lib/fakefs/version.rb", "lib/fakefs/spec_helpers.rb",
"spec/fakefs/spec_helpers_spec.rb", "lib/fakefs/version.rb",
"spec/spec.opts", "spec/fakefs/spec_helpers_spec.rb",
"spec/spec_helper.rb", "spec/spec.opts",
"test/fake/file/lstat_test.rb", "spec/spec_helper.rb",
"test/fake/file/stat_test.rb", "test/fake/file/lstat_test.rb",
"test/fake/file/sysseek_test.rb", "test/fake/file/stat_test.rb",
"test/fake/file/syswrite_test.rb", "test/fake/file/sysseek_test.rb",
"test/fake/file_test.rb", "test/fake/file/syswrite_test.rb",
"test/fake/symlink_test.rb", "test/fake/file_test.rb",
"test/fakefs_test.rb", "test/fake/symlink_test.rb",
"test/file/stat_test.rb", "test/fakefs_test.rb",
"test/safe_test.rb", "test/file/stat_test.rb",
"test/test_helper.rb", "test/safe_test.rb",
"test/verify.rb" "test/test_helper.rb",
"test/verify.rb"
] ]
s.homepage = %q{http://github.com/defunkt/fakefs} s.homepage = %q{http://github.com/defunkt/fakefs}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"] s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7} s.rubygems_version = %q{1.3.7}
s.summary = %q{A fake filesystem. Use it in your tests.} s.summary = %q{A fake filesystem. Use it in your tests.}
s.test_files = [ s.test_files = [
"spec/fakefs/spec_helpers_spec.rb", "spec/fakefs/spec_helpers_spec.rb",
"spec/spec_helper.rb", "spec/spec_helper.rb",
"test/fake/file/lstat_test.rb", "test/fake/file/lstat_test.rb",
"test/fake/file/stat_test.rb", "test/fake/file/stat_test.rb",
"test/fake/file/sysseek_test.rb", "test/fake/file/sysseek_test.rb",
"test/fake/file/syswrite_test.rb", "test/fake/file/syswrite_test.rb",
"test/fake/file_test.rb", "test/fake/file_test.rb",
"test/fake/symlink_test.rb", "test/fake/symlink_test.rb",
"test/fakefs_test.rb", "test/fakefs_test.rb",
"test/file/stat_test.rb", "test/file/stat_test.rb",
"test/safe_test.rb", "test/safe_test.rb",
"test/test_helper.rb", "test/test_helper.rb",
"test/verify.rb" "test/verify.rb"
] ]


if s.respond_to? :specification_version then if s.respond_to? :specification_version then
Expand Down

0 comments on commit 7c19c1a

Please sign in to comment.