rsanheim-fakefs 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/fakefs.gemspec +61 -0
  2. data/version.yml +1 -1
  3. metadata +2 -1
data/fakefs.gemspec ADDED
@@ -0,0 +1,61 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{fakefs}
8
+ s.version = "0.0.2"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Chris Wanstrath"]
12
+ s.date = %q{2009-09-12}
13
+ s.description = %q{A fake filesystem. Use it in your tests.}
14
+ s.email = %q{chris@ozmm.org}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.markdown"
18
+ ]
19
+ s.files = [
20
+ "LICENSE",
21
+ "README.markdown",
22
+ "Rakefile",
23
+ "fakefs.gemspec",
24
+ "lib/fakefs.rb",
25
+ "lib/fakefs/base.rb",
26
+ "lib/fakefs/dir.rb",
27
+ "lib/fakefs/fake/dir.rb",
28
+ "lib/fakefs/fake/file.rb",
29
+ "lib/fakefs/fake/symlink.rb",
30
+ "lib/fakefs/file.rb",
31
+ "lib/fakefs/file_system.rb",
32
+ "lib/fakefs/fileutils.rb",
33
+ "lib/fakefs/safe.rb",
34
+ "lib/fakefs/version.rb",
35
+ "test/fakefs_test.rb",
36
+ "test/safe_test.rb",
37
+ "test/verify.rb",
38
+ "version.yml"
39
+ ]
40
+ s.has_rdoc = false
41
+ s.homepage = %q{http://github.com/defunkt/fakefs}
42
+ s.rdoc_options = ["--charset=UTF-8"]
43
+ s.require_paths = ["lib"]
44
+ s.rubygems_version = %q{1.3.5}
45
+ s.summary = %q{A fake filesystem. Use it in your tests.}
46
+ s.test_files = [
47
+ "test/fakefs_test.rb",
48
+ "test/safe_test.rb",
49
+ "test/verify.rb"
50
+ ]
51
+
52
+ if s.respond_to? :specification_version then
53
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
54
+ s.specification_version = 3
55
+
56
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
57
+ else
58
+ end
59
+ else
60
+ end
61
+ end
data/version.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 0
4
- :patch: 1
4
+ :patch: 2
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rsanheim-fakefs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Wanstrath
@@ -26,6 +26,7 @@ files:
26
26
  - LICENSE
27
27
  - README.markdown
28
28
  - Rakefile
29
+ - fakefs.gemspec
29
30
  - lib/fakefs.rb
30
31
  - lib/fakefs/base.rb
31
32
  - lib/fakefs/dir.rb