isi-rb 1.1.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/ChangeLog +111 -0
- data/README +126 -0
- data/Rakefile +56 -0
- data/bin/isi2bibtex +9 -0
- data/html/classes/ARGF.html +127 -0
- data/html/classes/ARGF.src/M000004.html +53 -0
- data/html/classes/ISI_record.html +182 -0
- data/html/classes/ISI_record.src/M000001.html +19 -0
- data/html/classes/ISI_record.src/M000002.html +42 -0
- data/html/classes/ISI_record.src/M000003.html +34 -0
- data/html/created.rid +1 -0
- data/html/files/README.html +282 -0
- data/html/files/lib/isi_rb.html +132 -0
- data/html/fr_class_index.html +28 -0
- data/html/fr_file_index.html +28 -0
- data/html/fr_method_index.html +30 -0
- data/html/index.html +24 -0
- data/html/rdoc-style.css +208 -0
- data/isi-rb.gemspec +29 -0
- data/lib/isi.rb +201 -0
- data/setup.rb +1585 -0
- data/tests/isi_test.rb +13 -0
- metadata +84 -0
data/tests/isi_test.rb
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
#! /usr/bin/env ruby
|
2
|
+
# isi_test.rb -*-ruby-*-
|
3
|
+
# Time-stamp: <2007-04-28 16:14:18 t-nissie>
|
4
|
+
# Author: Takeshi NISHIMATSU
|
5
|
+
##
|
6
|
+
require 'rubyunit'
|
7
|
+
require 'isi'
|
8
|
+
|
9
|
+
class TestISI < RUNIT::TestCase
|
10
|
+
def test_exist_ISI_record
|
11
|
+
assert_instance_of(Class, ISI_record)
|
12
|
+
end
|
13
|
+
end
|
metadata
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.2
|
3
|
+
specification_version: 1
|
4
|
+
name: isi-rb
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 1.1.0
|
7
|
+
date: 2007-04-28 00:00:00 -04:00
|
8
|
+
summary: isi.rb converts ISI Export Format to BibTeX Format. (Formerly named isi2bibtex.rb.)
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: t-nissie@imr.tohoku.ac.jp
|
12
|
+
homepage: http://rubyforge.org/projects/isi-rb
|
13
|
+
rubyforge_project: isi-rb
|
14
|
+
description: isi.rb converts ISI Export Format to BibTeX Format. This is a Ruby script. You can use this script as a library. You can get the tagged Marked List in Web of Science by pushing the [SAVE TO FILE] button.
|
15
|
+
autorequire: lib/isi.rb
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors:
|
30
|
+
- Takeshi Nishimatsu
|
31
|
+
files:
|
32
|
+
- lib/isi.rb
|
33
|
+
- tests/isi_test.rb
|
34
|
+
- html/rdoc-style.css
|
35
|
+
- html/files
|
36
|
+
- html/files/README.html
|
37
|
+
- html/files/lib
|
38
|
+
- html/files/lib/isi_rb.html
|
39
|
+
- html/classes
|
40
|
+
- html/classes/ISI_record.src
|
41
|
+
- html/classes/ISI_record.src/M000001.html
|
42
|
+
- html/classes/ISI_record.src/M000002.html
|
43
|
+
- html/classes/ISI_record.src/M000003.html
|
44
|
+
- html/classes/ARGF.src
|
45
|
+
- html/classes/ARGF.src/M000004.html
|
46
|
+
- html/classes/ISI_record.html
|
47
|
+
- html/classes/ARGF.html
|
48
|
+
- html/fr_file_index.html
|
49
|
+
- html/fr_class_index.html
|
50
|
+
- html/fr_method_index.html
|
51
|
+
- html/index.html
|
52
|
+
- html/created.rid
|
53
|
+
- bin/isi2bibtex
|
54
|
+
- ChangeLog
|
55
|
+
- README
|
56
|
+
- Rakefile
|
57
|
+
- isi-rb.gemspec
|
58
|
+
- setup.rb
|
59
|
+
test_files:
|
60
|
+
- tests/isi_test.rb
|
61
|
+
rdoc_options:
|
62
|
+
- --title
|
63
|
+
- isi-rb
|
64
|
+
- --main
|
65
|
+
- README
|
66
|
+
- --line-numbers
|
67
|
+
extra_rdoc_files:
|
68
|
+
- README
|
69
|
+
executables: []
|
70
|
+
|
71
|
+
extensions: []
|
72
|
+
|
73
|
+
requirements: []
|
74
|
+
|
75
|
+
dependencies:
|
76
|
+
- !ruby/object:Gem::Dependency
|
77
|
+
name: text-format
|
78
|
+
version_requirement:
|
79
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: 1.0.0
|
84
|
+
version:
|