fusefs-osx 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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,82 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fusefs-osx
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.7.0
5
+ platform: ruby
6
+ authors:
7
+ - Kyle Maxwell
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-12-08 00:00:00 -08:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: Gemified
17
+ email: kyle@kylemaxwell.com
18
+ executables: []
19
+
20
+ extensions:
21
+ - ext/extconf.rb
22
+ extra_rdoc_files:
23
+ - LICENSE
24
+ - README
25
+ files:
26
+ - .document
27
+ - .gitignore
28
+ - API.txt
29
+ - Changes.txt
30
+ - LICENSE
31
+ - README
32
+ - Rakefile
33
+ - TODO
34
+ - VERSION
35
+ - ext/MANIFEST
36
+ - ext/extconf.rb
37
+ - ext/fusefs_fuse.c
38
+ - ext/fusefs_fuse.h
39
+ - ext/fusefs_lib.c
40
+ - fusefs-osx.gemspec
41
+ - hello.sh
42
+ - lib/fusefs.rb
43
+ - sample/demo.rb
44
+ - sample/dictfs.rb
45
+ - sample/hello.rb
46
+ - sample/openurifs.rb
47
+ - sample/railsfs.rb
48
+ - sample/sqlfs.rb
49
+ - sample/yamlfs.rb
50
+ - test/fusefs_test.rb
51
+ - test/test_helper.rb
52
+ has_rdoc: true
53
+ homepage: http://github.com/fizx/fusefs
54
+ licenses: []
55
+
56
+ post_install_message:
57
+ rdoc_options:
58
+ - --charset=UTF-8
59
+ require_paths:
60
+ - lib
61
+ required_ruby_version: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ version: "0"
66
+ version:
67
+ required_rubygems_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: "0"
72
+ version:
73
+ requirements: []
74
+
75
+ rubyforge_project:
76
+ rubygems_version: 1.3.5
77
+ signing_key:
78
+ specification_version: 3
79
+ summary: fusefs
80
+ test_files:
81
+ - test/fusefs_test.rb
82
+ - test/test_helper.rb