bio-old-biofetch-emulator 0.0.0 → 1.0.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1acb392f7fea461ab1f0be3309f787a0bcc12cd7
4
- data.tar.gz: 7ea00a53bcfb15ff82c7a868bfba893153b50476
3
+ metadata.gz: 6063359e7cc574c81fadc4f05d94c9b51f04a637
4
+ data.tar.gz: 26c964f546b085e77b3bd8e19c17281d55109d89
5
5
  SHA512:
6
- metadata.gz: b83d93062361505b405e173cc87a955ec946d3111273b278348f20d56ed275650e83f2c4eb7c3ef8f1f861572b06b9c75c82d3f0a8a5cfa8339cdf10999b6f60
7
- data.tar.gz: ab26f02e799f83c75f7d849572312eca527d648db9f3a1420652c2b5673c134f847ba396852f370c67a08a6bf102d6404101b21b8dc9446290df4fc1f95952a1
6
+ metadata.gz: f83818bc07b70c7c405cdc802d706fa68da4e1c5707f7ec476d1df3fd3304b390378b94c1bf31e94cc099bef86ec77f60fecb5d505f1f5da183f1178fd9b33f2
7
+ data.tar.gz: e6c09a645323c5c1733441174680bfd8efa866292e251d3a6fcee23854d01e882307e81c041ac2cf81ab6f931a7ca857c1f7b1b06b4584b18f494761eaa422a6
data/Gemfile CHANGED
@@ -12,4 +12,5 @@ group :development do
12
12
  gem "rdoc"
13
13
  gem "jeweler"
14
14
  gem "bundler", ">= 1.0.21"
15
+ gem "test-unit"
15
16
  end
data/README.md CHANGED
@@ -2,9 +2,14 @@
2
2
 
3
3
  [![Build Status](https://secure.travis-ci.org/ngoto/bioruby-old-biofetch-emulator.png)](http://travis-ci.org/ngoto/bioruby-old-biofetch-emulator)
4
4
 
5
- Full description goes here
5
+ Emulator that emulates Bio::Fetch object in BioRuby as if discontinued
6
+ BioRuby BioFetch server were still alive. It overrides methods and objects
7
+ in Bio::Fetch, and if the old BioRuby BioFetch server's URL is given,
8
+ it intercepts all requests and converts them into existing web services
9
+ such as TogoWS, KEGG REST API, NCBI E-Utilities, and GenomeNet(genome.jp).
6
10
 
7
- Note: this software is under active development!
11
+ Note: this software may fail to work depending on the status of the above
12
+ servers.
8
13
 
9
14
  ## Installation
10
15
 
@@ -18,9 +23,12 @@ gem install bio-old-biofetch-emulator
18
23
  require 'bio-old-biofetch-emulator'
19
24
  ```
20
25
 
26
+ In general, to run existing software using the BioRuby BioFetch server, no
27
+ additional code is needed other than `require 'bio-old-biofetch-emulator'`.
28
+
21
29
  The API doc is online. For more code examples see the test files in
22
30
  the source tree.
23
-
31
+
24
32
  ## Project home page
25
33
 
26
34
  Information on the source tree, documentation, examples, issues and
@@ -28,8 +36,6 @@ how to contribute, see
28
36
 
29
37
  http://github.com/ngoto/bioruby-old-biofetch-emulator
30
38
 
31
- The BioRuby community is on IRC server: irc.freenode.org, channel: #bioruby.
32
-
33
39
  ## Cite
34
40
 
35
41
  If you use this software, please cite one of
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.0
1
+ 1.0.0
@@ -390,7 +390,7 @@ module Bio
390
390
  def new_with_old_biofetch_emulator(*arg)
391
391
  tmp = self.ancestors
392
392
  if (tmp - DONT_OVERRIDE).size == tmp.size then
393
- $stderr.puts self
393
+ #$stderr.puts self
394
394
  case arg.size
395
395
  when 0
396
396
  return Client.new
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bio-old-biofetch-emulator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Naohisa Goto
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-13 00:00:00.000000000 Z
11
+ date: 2016-06-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bio
@@ -80,6 +80,20 @@ dependencies:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: 1.0.21
83
+ - !ruby/object:Gem::Dependency
84
+ name: test-unit
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
83
97
  description: Emulator that emulates Bio::Fetch object in BioRuby as if old BioRuby
84
98
  BioFetch server were still alive. It overrides methods and objects in Bio::Fetch,
85
99
  and if the old BioRuby BioFetch server's URL is given, it intercepts all requests
@@ -91,14 +105,12 @@ extensions: []
91
105
  extra_rdoc_files:
92
106
  - LICENSE.txt
93
107
  - README.md
94
- - README.rdoc
95
108
  files:
96
109
  - ".document"
97
110
  - ".travis.yml"
98
111
  - Gemfile
99
112
  - LICENSE.txt
100
113
  - README.md
101
- - README.rdoc
102
114
  - Rakefile
103
115
  - VERSION
104
116
  - lib/bio-old-biofetch-emulator.rb
@@ -125,7 +137,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
125
137
  version: '0'
126
138
  requirements: []
127
139
  rubyforge_project:
128
- rubygems_version: 2.2.2
140
+ rubygems_version: 2.4.5.1
129
141
  signing_key:
130
142
  specification_version: 4
131
143
  summary: Emulates as if old BioRuby BioFetch alives
@@ -1,48 +0,0 @@
1
- = bio-old-biofetch-emulator
2
-
3
- {<img
4
- src="https://secure.travis-ci.org/ngoto/bioruby-old-biofetch-emulator.png"
5
- />}[http://travis-ci.org/#!/ngoto/bioruby-old-biofetch-emulator]
6
-
7
- Full description goes here
8
-
9
- Note: this software is under active development!
10
-
11
- == Installation
12
-
13
- gem install bio-old-biofetch-emulator
14
-
15
- == Usage
16
-
17
- == Developers
18
-
19
- To use the library
20
-
21
- require 'bio-old-biofetch-emulator'
22
-
23
- The API doc is online. For more code examples see also the test files in
24
- the source tree.
25
-
26
- == Project home page
27
-
28
- Information on the source tree, documentation, issues and how to contribute, see
29
-
30
- http://github.com/ngoto/bioruby-old-biofetch-emulator
31
-
32
- The BioRuby community is on IRC server: irc.freenode.org, channel: #bioruby.
33
-
34
- == Cite
35
-
36
- If you use this software, please cite one of
37
-
38
- * [BioRuby: bioinformatics software for the Ruby programming language](http://dx.doi.org/10.1093/bioinformatics/btq475)
39
- * [Biogem: an effective tool-based approach for scaling up open source software development in bioinformatics](http://dx.doi.org/10.1093/bioinformatics/bts080)
40
-
41
- == Biogems.info
42
-
43
- This Biogem is published at http://biogems.info/index.html#bio-old-biofetch-emulator
44
-
45
- == Copyright
46
-
47
- Copyright (c) 2014 Naohisa Goto. See LICENSE.txt for further details.
48
-