Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Got errors compiling the extensions #2

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
482 changes: 0 additions & 482 deletions COPYRIGHT

This file was deleted.

340 changes: 340 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

Empty file removed README
Empty file.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# rfuse-ng

Rfuse NG is a fork of rfuse for Ruby 1.9.2 and above.

## Installation

Add this line to your application's Gemfile:

gem 'rfuse-ng'

And then execute:

$ bundle

Or install it yourself as:

$ gem install rfuse-ng

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request
27 changes: 2 additions & 25 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,25 +1,2 @@
# encoding: UTF-8

require 'rubygems'
require 'rake'

begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "rfuse-ng"
gem.version = "0.5.3"
gem.summary = 'Ruby language binding for FUSE'
gem.description = 'Ruby language binding for FUSE. It was forked from rfuse'
gem.rubyforge_project = 'rfuse-ng'
gem.authors = ["Tamás László Fábián"]
gem.email = "[email protected]"
gem.homepage = "http://rubyforge.org/projects/rfuse-ng"
gem.licenses = ["LGPL"]
gem.extensions = ["ext/extconf.rb"]
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end

task :default => :build
#!/usr/bin/env rake
require "bundler/gem_tasks"
2 changes: 1 addition & 1 deletion lib/rfuse-ng/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module RFuseNG
VERSION = "0.0.3"
VERSION = "0.5.3"
end
15 changes: 7 additions & 8 deletions rfuse-ng.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ $:.push File.expand_path("../lib", __FILE__)
require "rfuse-ng/version"

Gem::Specification.new do |s|
s.name = "rfuse_ng"
s.name = "rfuse-ng"
s.version = RFuseNG::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["William Josephson"]
s.email = ["info@tddium.com"]
s.homepage = "http://www.tddium.com/"
s.summary = %q{rfuse-ng gem for Ruby 1.9.2}
s.description = %q{Ruby FUSE interface gem for Ruby 1.9.2}
s.authors = ["Tamás László Fábián"]
s.email = ["giganetom@gmail.com"]
s.homepage = "http://github.com/tddium/rfuse-ng"
s.summary = %q{Ruby language binding for FUSE}
s.description = %q{Ruby language binding for FUSE. It was forked from rfuse and modified for Ruby 1.9.2.}

s.rubyforge_project = "rfuse-ng"

s.files = `git ls-files`.split("\n")
Expand All @@ -20,6 +20,5 @@ Gem::Specification.new do |s|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]

s.add_development_dependency("rspec")
s.add_development_dependency("rake")
end