Skip to content

Commit

Permalink
Gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
winton committed Sep 7, 2009
1 parent 1f4eeba commit 096b0ef
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gemspec.rb
@@ -1,5 +1,7 @@
GEM_NAME = 'rbackup'
GEM_FILES = FileList['**/*'] - FileList['coverage', 'coverage/**/*', 'pkg', 'pkg/**/*']
GEM_FILES = FileList['**/*'] - FileList[
'coverage', 'coverage/**/*', 'pkg', 'pkg/**/*', 'spec/fixtures/destination/*'
]
GEM_SPEC = Gem::Specification.new do |s|
# == CONFIGURE ==
s.author = "Winton Welsh"
Expand Down
29 changes: 29 additions & 0 deletions rbackup.gemspec
@@ -0,0 +1,29 @@
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{rbackup}
s.version = "0.1.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Winton Welsh"]
s.date = %q{2009-09-07}
s.default_executable = %q{rbackup}
s.email = %q{mail@wintoni.us}
s.executables = ["rbackup"]
s.extra_rdoc_files = ["README.markdown"]
s.files = ["bin", "bin/rbackup", "gemspec.rb", "lib", "lib/rbackup.rb", "MIT-LICENSE", "Rakefile", "rbackup.gemspec", "README.markdown", "spec", "spec/fixtures", "spec/fixtures/destination", "spec/fixtures/rbackup.yml", "spec/fixtures/source", "spec/fixtures/source/1.txt", "spec/fixtures/source/2.txt", "spec/rbackup_spec.rb", "spec/spec.opts", "spec/spec_helper.rb"]
s.homepage = %q{http://github.com/winton/rbackup}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.1}
s.summary = %q{Backup your stuff with Ruby and Rsync}

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else
end
else
end
end

0 comments on commit 096b0ef

Please sign in to comment.