fusefs 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class FusefsTest < Test::Unit::TestCase
4
+ should "probably rename this file and start testing for real" do
5
+ flunk "hey buddy, you should probably rename this file and start testing for real"
6
+ end
7
+ end
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ require 'test/unit'
3
+ require 'shoulda'
4
+
5
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
6
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
7
+ require 'fusefs'
8
+
9
+ class Test::Unit::TestCase
10
+ end
metadata ADDED
@@ -0,0 +1,83 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fusefs
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.7.0
5
+ platform: ruby
6
+ authors:
7
+ - Shane
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2010-03-15 00:00:00 +00:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: Gemified
17
+ email: shane@duairc.com
18
+ executables: []
19
+
20
+ extensions:
21
+ - ext/extconf.rb
22
+ extra_rdoc_files:
23
+ - LICENSE
24
+ - README
25
+ - TODO
26
+ files:
27
+ - .document
28
+ - .gitignore
29
+ - API.txt
30
+ - Changes.txt
31
+ - LICENSE
32
+ - README
33
+ - Rakefile
34
+ - TODO
35
+ - VERSION
36
+ - ext/MANIFEST
37
+ - ext/extconf.rb
38
+ - ext/fusefs_fuse.c
39
+ - ext/fusefs_fuse.h
40
+ - ext/fusefs_lib.c
41
+ - fusefs.gemspec
42
+ - hello.sh
43
+ - lib/fusefs.rb
44
+ - sample/demo.rb
45
+ - sample/dictfs.rb
46
+ - sample/hello.rb
47
+ - sample/openurifs.rb
48
+ - sample/railsfs.rb
49
+ - sample/sqlfs.rb
50
+ - sample/yamlfs.rb
51
+ - test/fusefs_test.rb
52
+ - test/test_helper.rb
53
+ has_rdoc: true
54
+ homepage: http://github.com/duairc/fusefs
55
+ licenses: []
56
+
57
+ post_install_message:
58
+ rdoc_options:
59
+ - --charset=UTF-8
60
+ require_paths:
61
+ - lib
62
+ required_ruby_version: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: "0"
67
+ version:
68
+ required_rubygems_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: "0"
73
+ version:
74
+ requirements: []
75
+
76
+ rubyforge_project:
77
+ rubygems_version: 1.3.5
78
+ signing_key:
79
+ specification_version: 3
80
+ summary: fusefs
81
+ test_files:
82
+ - test/test_helper.rb
83
+ - test/fusefs_test.rb