Browse Source

Initial commit from NB6.7

Frederic G. Marand 14 years ago
parent
commit
7cb979bd93

+ 3 - 0
LICENSE

@@ -0,0 +1,3 @@
+== TBackup
+
+Put appropriate LICENSE for your project here.

+ 3 - 0
README

@@ -0,0 +1,3 @@
+== TBackup
+
+You should document your project here.

+ 45 - 0
Rakefile

@@ -0,0 +1,45 @@
+# 
+# To change this template, choose Tools | Templates
+# and open the template in the editor.
+ 
+
+require 'rubygems'
+require 'rake'
+require 'rake/clean'
+require 'rake/gempackagetask'
+require 'rake/rdoctask'
+require 'rake/testtask'
+
+spec = Gem::Specification.new do |s|
+  s.name = 'TBackup'
+  s.version = '0.0.1'
+  s.has_rdoc = true
+  s.extra_rdoc_files = ['README', 'LICENSE']
+  s.summary = 'Your summary here'
+  s.description = s.summary
+  s.author = ''
+  s.email = ''
+  # s.executables = ['your_executable_here']
+  s.files = %w(LICENSE README Rakefile) + Dir.glob("{bin,lib,spec}/**/*")
+  s.require_path = "lib"
+  s.bindir = "bin"
+end
+
+Rake::GemPackageTask.new(spec) do |p|
+  p.gem_spec = spec
+  p.need_tar = true
+  p.need_zip = true
+end
+
+Rake::RDocTask.new do |rdoc|
+  files =['README', 'LICENSE', 'lib/**/*.rb']
+  rdoc.rdoc_files.add(files)
+  rdoc.main = "README" # page to start on
+  rdoc.title = "TBackup Docs"
+  rdoc.rdoc_dir = 'doc/rdoc' # rdoc output folder
+  rdoc.options << '--line-numbers'
+end
+
+Rake::TestTask.new do |t|
+  t.test_files = FileList['test/**/*.rb']
+end

+ 0 - 0
nbproject/private/config.properties


+ 1 - 0
nbproject/private/private.properties

@@ -0,0 +1 @@
+platform.active=Ruby

+ 4 - 0
nbproject/private/private.xml

@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project-private xmlns="http://www.netbeans.org/ns/project-private/1">
+    <editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/1"/>
+</project-private>

+ 18 - 0
nbproject/private/rake-d.txt

@@ -0,0 +1,18 @@
+clean=Remove any temporary products.
+clobber=Remove any generated file.
+clobber_package=Remove package products
+clobber_rdoc=Remove rdoc products
+doc=
+doc/rdoc=
+doc/rdoc/index.html=
+gem=Build the gem file TBackup-0.0.1.gem
+package=Build all the packages
+pkg=
+pkg/TBackup-0.0.1=
+pkg/TBackup-0.0.1.gem=
+pkg/TBackup-0.0.1.tgz=
+pkg/TBackup-0.0.1.zip=
+rdoc=Build the rdoc HTML Files
+repackage=Force a rebuild of the package files
+rerdoc=Force a rebuild of the RDOC files
+test=Run tests

+ 7 - 0
nbproject/project.properties

@@ -0,0 +1,7 @@
+javac.classpath=
+main.file=main.rb
+platform.active=Ruby
+source.encoding=UTF-8
+spec.src.dir=spec
+src.dir=lib
+test.src.dir=test

+ 16 - 0
nbproject/project.xml

@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://www.netbeans.org/ns/project/1">
+    <type>org.netbeans.modules.ruby.rubyproject</type>
+    <configuration>
+        <data xmlns="http://www.netbeans.org/ns/ruby-project/1">
+            <name>TBackup</name>
+            <source-roots>
+                <root id="src.dir"/>
+            </source-roots>
+            <test-roots>
+                <root id="test.src.dir"/>
+                <root id="spec.src.dir"/>
+            </test-roots>
+        </data>
+    </configuration>
+</project>