aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Redon <kevredon@mail.tsaitgaist.info>2011-05-08 18:43:16 +0200
committerKevin Redon <kevredon@mail.tsaitgaist.info>2011-05-08 18:43:16 +0200
commit2612bb3d6c22e505c742c5ad4b87f61190b21e65 (patch)
tree2260690dc3df7e831606c7d9a8de6c0039bb8b24
parenteae1611e8c638bc268a51291516ca39811482b5d (diff)
Rakefile removed
-rw-r--r--README4
-rw-r--r--Rakefile50
2 files changed, 2 insertions, 52 deletions
diff --git a/README b/README
index b8d9432..3629ef5 100644
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
Presentation :
-softSIM is a collection of tool to play with SIM.
-I mainly relies on SAP, as abstraction layer to access SIM.
+softSIM is a collection of tools to play with SIM.
+It mainly relies on SAP, as abstraction layer to access SIM.
SAP is a implementation of the BTSAP (Bluetooth SIM Access Profile) spec.
Overview :
diff --git a/Rakefile b/Rakefile
deleted file mode 100644
index cd0bc20..0000000
--- a/Rakefile
+++ /dev/null
@@ -1,50 +0,0 @@
-#
-# 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'
-require 'spec/rake/spectask'
-
-spec = Gem::Specification.new do |s|
- s.name = 'SIM2'
- 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 = "SIM2 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
-
-Spec::Rake::SpecTask.new do |t|
- t.spec_files = FileList['spec/**/*.rb']
-end \ No newline at end of file