dfect 2.1.0 → 2.2.0
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.
- data/CREDITS +20 -2
- data/bin/dfect +12 -43
- data/lib/dfect/full.rb +24 -0
- data/lib/dfect/inochi.rb +8 -17
- data/man.html +947 -0
- data/man/man1/dfect.1.gz +0 -0
- metadata +19 -35
- data/HISTORY +0 -327
- data/INSTALL +0 -35
- data/MANUAL +0 -23
- data/README +0 -95
- data/USAGE +0 -406
- data/doc/api/Dfect.html +0 -3470
- data/doc/api/Object.html +0 -111
- data/doc/api/_index.html +0 -107
- data/doc/api/class_list.html +0 -36
- data/doc/api/css/common.css +0 -1
- data/doc/api/css/full_list.css +0 -50
- data/doc/api/css/style.css +0 -273
- data/doc/api/file.LICENSE.html +0 -73
- data/doc/api/file_list.html +0 -38
- data/doc/api/frames.html +0 -13
- data/doc/api/index.html +0 -73
- data/doc/api/js/app.js +0 -111
- data/doc/api/js/full_list.js +0 -117
- data/doc/api/js/jquery.js +0 -19
- data/doc/api/method_list.html +0 -347
- data/doc/api/top-level-namespace.html +0 -89
- data/doc/index.html +0 -2750
- data/inochi.opts +0 -31
- data/test/dfect_test.rb +0 -449
- data/test/runner +0 -25
- data/test/test_helper.rb +0 -1
data/test/runner
DELETED
@@ -1,25 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# Adds the project library directory
|
4
|
-
# and this test directory to Ruby's
|
5
|
-
# load path and runs the given tests.
|
6
|
-
#
|
7
|
-
# Usage: ruby test/runner [TESTS_TO_RUN]
|
8
|
-
#
|
9
|
-
# Where: TESTS_TO_RUN is a list of files
|
10
|
-
# or file globbing patterns that
|
11
|
-
# describe a set of files to run.
|
12
|
-
#
|
13
|
-
# If this parameter is not given,
|
14
|
-
# all *_test.rb files within or
|
15
|
-
# beneath this directory are run.
|
16
|
-
|
17
|
-
lib_dir = File.expand_path('../../lib', __FILE__)
|
18
|
-
test_dir = File.expand_path('..', __FILE__)
|
19
|
-
$LOAD_PATH.unshift lib_dir, test_dir
|
20
|
-
|
21
|
-
require 'dfect/inochi'
|
22
|
-
require 'test_helper'
|
23
|
-
|
24
|
-
ARGV << "#{test_dir}/**/*_test.rb" if ARGV.empty?
|
25
|
-
ARGV.each {|glob| Dir[glob].each {|test| load test } }
|
data/test/test_helper.rb
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
require 'dfect/auto'
|