hysios-fusefs 0.0.1

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,77 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hysios-fusefs
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - hysios
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-01-11 00:00:00.000000000Z
13
+ dependencies: []
14
+ description: Gemified
15
+ email: shane@duairc.com
16
+ executables: []
17
+ extensions:
18
+ - ext/extconf.rb
19
+ extra_rdoc_files:
20
+ - LICENSE
21
+ - README
22
+ - TODO
23
+ files:
24
+ - .document
25
+ - .gitignore
26
+ - API.txt
27
+ - Changes.txt
28
+ - LICENSE
29
+ - README
30
+ - Rakefile
31
+ - TODO
32
+ - VERSION
33
+ - ext/MANIFEST
34
+ - ext/extconf.rb
35
+ - ext/fusefs_fuse.c
36
+ - ext/fusefs_fuse.h
37
+ - ext/fusefs_lib.c
38
+ - fusefs.gemspec
39
+ - hello.sh
40
+ - lib/fusefs.rb
41
+ - sample/demo.rb
42
+ - sample/dictfs.rb
43
+ - sample/hello.rb
44
+ - sample/openurifs.rb
45
+ - sample/railsfs.rb
46
+ - sample/sqlfs.rb
47
+ - sample/yamlfs.rb
48
+ - test/fusefs_test.rb
49
+ - test/test_helper.rb
50
+ homepage: http://github.com/hysios/fusefs
51
+ licenses: []
52
+ post_install_message:
53
+ rdoc_options:
54
+ - --charset=UTF-8
55
+ require_paths:
56
+ - lib
57
+ required_ruby_version: !ruby/object:Gem::Requirement
58
+ none: false
59
+ requirements:
60
+ - - ! '>='
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ required_rubygems_version: !ruby/object:Gem::Requirement
64
+ none: false
65
+ requirements:
66
+ - - ! '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ requirements: []
70
+ rubyforge_project:
71
+ rubygems_version: 1.8.10
72
+ signing_key:
73
+ specification_version: 3
74
+ summary: fusefs
75
+ test_files:
76
+ - test/test_helper.rb
77
+ - test/fusefs_test.rb