-
Notifications
You must be signed in to change notification settings - Fork 109
/
ChangeLog
2999 lines (2061 loc) · 96.6 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
commit 917fe0d0e9910267cd54bf48c2caabe89875a299
Author: Naohisa Goto <ng@bioruby.org>
Date: Wed Sep 7 22:00:56 2016 +0900
regenerate bioruby.gemspec with rake regemspec
bioruby.gemspec | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 1cfa823572742ea46f14420481c10f05fdbce862
Author: Naohisa Goto <ng@bioruby.org>
Date: Wed Sep 7 21:51:28 2016 +0900
Bio::BIORUBY_EXTRA_VERSION set to nil (Release version)
lib/bio/version.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 8c27599ef5b8ee33cd074feadd089de01a8fa8e6
Author: Naohisa Goto <ng@bioruby.org>
Date: Wed Sep 7 21:49:20 2016 +0900
Added release notes for 1.5.1 release
RELEASE_NOTES.rdoc | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
commit 47ada241ad6f3632dbbd77542befb82500b7195e
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Aug 13 08:22:22 2016 +0900
Update URLs and use https for NCBI REST web services
lib/bio/io/ncbirest.rb | 50 ++++++++++++++++++++++++++------------------------
1 file changed, 26 insertions(+), 24 deletions(-)
commit 018c2aff1c7813e7b07362ecc8a25db334c0ae95
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Aug 13 08:12:08 2016 +0900
New method Bio::Command#start_http_uri(uri) with tests
* lib/bio/command.rb: New method Bio::Command#start_http_uri(uri)
that supports HTTPS. Note that this method is intended to be
called only from BioRuby internals.
* lib/bio/command.rb: Bio::Command#post and #post_form are changed
to use the start_http_uri().
* test/network/bio/test_command.rb: tests for start_http_uri().
lib/bio/command.rb | 42 ++++++++++++++++++++++++++++++++++++++--
test/network/bio/test_command.rb | 17 ++++++++++++++++
2 files changed, 57 insertions(+), 2 deletions(-)
commit 7a5d897ebc45d9ec5357918a42eb2980decf01e4
Author: Naohisa Goto <ng@bioruby.org>
Date: Thu Jul 2 21:52:17 2015 +0900
version changed to 1.5.1-dev (pre-release version of 1.5.1)
lib/bio/version.rb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit 8fc4d6c64f6958a352c36b171b00d1f1ff2a2354
Author: Naohisa Goto <ng@bioruby.org>
Date: Thu Jul 2 21:47:28 2015 +0900
fix English syntax and unexpected word insertion
RELEASE_NOTES.rdoc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit 1d165c5def88fdeb8f3beeba1f9e6ab0ce71c2a1
Author: Naohisa Goto <ng@bioruby.org>
Date: Wed Jul 1 17:28:17 2015 +0900
BioRuby 1.5.0 is released
ChangeLog | 9 +++++++++
1 file changed, 9 insertions(+)
commit 01ac93ca3b341716c85c571f1194834db0a68e52
Author: Naohisa Goto <ng@bioruby.org>
Date: Wed Jul 1 02:21:26 2015 +0900
update ChangeLog by rake rechangelog
ChangeLog | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
commit cac63ff501df6a71afead77175db9fb491c2985b
Author: Naohisa Goto <ng@bioruby.org>
Date: Wed Jul 1 01:31:21 2015 +0900
.travis.yml: use Ruby 2.1.6 for tar and gem integration tests
.travis.yml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
commit 5318c99249f34dacc788b82c658ea0e256770db0
Author: Naohisa Goto <ng@bioruby.org>
Date: Wed Jul 1 00:43:39 2015 +0900
known issues added about new BLAST XML format and BLAST+ text format
KNOWN_ISSUES.rdoc | 11 +++++++++++
RELEASE_NOTES.rdoc | 11 +++++++++++
2 files changed, 22 insertions(+)
commit b61d8df0300ef366539e1154c9a2dac2f1f4ff18
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 23:57:01 2015 +0900
update ChangeLog with rake rechangelog
ChangeLog | 47 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
commit 75cf6c31c57239b2e39a171e536ad5dddcaec94a
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 23:56:08 2015 +0900
regenerate bioruby.gemspec with rake regemspec
bioruby.gemspec | 1 +
1 file changed, 1 insertion(+)
commit 608850beb33f3f7333f05307202b766adb350eb9
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 23:54:59 2015 +0900
description about updating of Ruby's License
RELEASE_NOTES.rdoc | 9 +++++++++
1 file changed, 9 insertions(+)
commit f54bcfc20d20935db4e342e5988c0b7f59c131b3
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 23:16:51 2015 +0900
BSDL is referred in COPYING and COPYING.ja
BSDL | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
create mode 100644 BSDL
commit d1cbfb699259fd57af02181f4374d562dda3abe1
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 23:14:42 2015 +0900
changes of Ruby's License is reflected.
COPYING | 4 ++--
COPYING.ja | 72 +++++++++++++++++++++++++++++++-------------------------------
2 files changed, 38 insertions(+), 38 deletions(-)
commit 2d9de9a0e2abe7fa9f193e54af0cbfc24bf2c37b
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 22:50:37 2015 +0900
ChangeLog is regenerated by using "rake rechangelog"
ChangeLog | 2786 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 2780 insertions(+), 6 deletions(-)
commit 70665a69a79d569d7bb37ef6d8c238534e6dae3a
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 22:49:55 2015 +0900
KNOWN_ISSUES.rdoc: change ruby versions and add descriptions
KNOWN_ISSUES.rdoc | 14 +++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)
commit 1054106f93b973b5a92f993c5b83b1444f96fffe
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 22:48:51 2015 +0900
prepare to release BioRuby 1.5.0
bioruby.gemspec | 2 +-
lib/bio/version.rb | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
commit 0f150586904f7e423455615313992ccf77d7e123
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 22:44:58 2015 +0900
RELEASE_NOTES.rdoc: update many
RELEASE_NOTES.rdoc | 151 ++++++++++++++++++++++++++++++++++++++++++++++-------
1 file changed, 132 insertions(+), 19 deletions(-)
commit 2924ca0b977da13d42f232f880fd2df0b2995677
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 21:55:52 2015 +0900
Bug fix: Bio::UniProtKB#gene_name should not raise NoMethodError
* Bug fix: Bio::UniProtKB#gene_name raised NoMethodError when
gene_names method returns nil. It should return nil.
Thanks to Jose Irizarry who reports and sends suggested fix.
(https://github.com/bioruby/bioruby/pull/83 )
lib/bio/db/embl/uniprotkb.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 9bf9022007a0ff31a870b1ea08e423aebc487c17
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 18:45:51 2015 +0900
regenerate bioruby.gemspec with rake regemspec
bioruby.gemspec | 1 +
1 file changed, 1 insertion(+)
commit a151e51a44b3dd93e5d075d71954f639eaec339e
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 18:10:55 2015 +0900
update docs; change recommended Ruby versions
README.rdoc | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
commit e86e745c8a6c666c446fe2f9f47818140999e2db
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 18:08:53 2015 +0900
delete description about SOAP4R
README.rdoc | 5 -----
1 file changed, 5 deletions(-)
commit 7e4bfb6b3757872691487b080bfd87363a4f9480
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 03:22:35 2015 +0900
.travis.yml: test/unit no longer bundled with Ruby 2.2
* For Ruby 2.2, use a new Gemfile named Gemfile.travis-ruby2.2
that include 'gem "test-unit"' line because test/unit have been
provided by bundled gem since Ruby 2.2.
.travis.yml | 7 ++++---
gemfiles/Gemfile.travis-ruby2.2 | 9 +++++++++
2 files changed, 13 insertions(+), 3 deletions(-)
create mode 100644 gemfiles/Gemfile.travis-ruby2.2
commit cac85ca215ed781c80d49a5bf3d5d37d808c783b
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 02:51:16 2015 +0900
bump up version to 1.5.0-dev; simplify the versioning rules
* Bump up version to 1.5.0-dev (1.5.0.20150630)
* Simplify the versioning rules.
* We will adopt the Semantic Versioning since BioRuby 1.5.1.
bioruby.gemspec | 2 +-
bioruby.gemspec.erb | 21 ++++-----------------
lib/bio/version.rb | 17 ++++++++---------
3 files changed, 13 insertions(+), 27 deletions(-)
commit 1a24fb6840932499be833b5ec3bb36184b1334a1
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 02:14:01 2015 +0900
Bug fix: update Bio::Hinv::BASE_URI
* Bug fix: update Bio::Hinv::BASE_URI to follow the server URI change.
* Update official documentation URL.
lib/bio/io/hinv.rb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit a9a12fff70ca287aa098d1331a3146e2899cb709
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 02:08:40 2015 +0900
delete $Id:$ line
lib/bio/io/hinv.rb | 1 -
1 file changed, 1 deletion(-)
commit 2bfa0f41969003f17c4b894b5279347616c8f187
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 01:58:01 2015 +0900
delete sections about SOAP4R issues
KNOWN_ISSUES.rdoc | 12 ------------
1 file changed, 12 deletions(-)
commit 9dbd83aa00acc5f78b5da68f000c305da9f31b66
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 01:54:16 2015 +0900
remove commented-out lines of soap4r-ruby1.9
gemfiles/Gemfile.travis-jruby1.9 | 3 ---
gemfiles/Gemfile.travis-rbx | 3 ---
gemfiles/Gemfile.travis-ruby1.9 | 3 ---
3 files changed, 9 deletions(-)
commit 14d2f3e2fa15f94faeff4d28c957f581461eac82
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 01:50:30 2015 +0900
.travis.yml: update ruby versions, remove ruby 1.9.2
.travis.yml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
commit 89f9b1fe2332584b5d63b1539b8e470d853478a3
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 00:36:42 2015 +0900
about removal of Bio::SOAPWSDL, Bio::EBI::SOAP, Bio::HGC::HiGet
RELEASE_NOTES.rdoc | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
commit 29516d3d6d2f907f65822bcf4146e95785773a3a
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 00:50:47 2015 +0900
regenerate bioruby.gemspec with rake regemspec
bioruby.gemspec | 6 ------
1 file changed, 6 deletions(-)
commit 357a1afc5ef457326179142c163968aa5cd94864
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 00:49:42 2015 +0900
not to load deleted file lib/bio/shell/plugin/soap.rb
lib/bio/shell.rb | 1 -
1 file changed, 1 deletion(-)
commit 956e475da52ea17f1022493f589489a3e7c06f93
Author: Naohisa Goto <ng@bioruby.org>
Date: Mon Jun 29 23:43:24 2015 +0900
deleted lib/bio/shell/plugin/soap.rb
* deleted lib/bio/shell/plugin/soap.rb because Bio::SOAPWSDL and
all SOAP client classes in BioRuby are removed.
lib/bio/shell/plugin/soap.rb | 50 --------------------------------------------
1 file changed, 50 deletions(-)
delete mode 100644 lib/bio/shell/plugin/soap.rb
commit 00acae3c3a8066891e08dc225eae2c22c3415191
Author: Naohisa Goto <ng@bioruby.org>
Date: Mon Jun 29 23:41:20 2015 +0900
not to load removed Bio::EBI::SOAP from lib/bio/io/ebisoap.rb
lib/bio.rb | 4 ----
1 file changed, 4 deletions(-)
commit d4844b38b5ddaec7ec15b56ef66f6930f0e6cfc0
Author: Naohisa Goto <ng@bioruby.org>
Date: Mon Jun 29 23:38:26 2015 +0900
remove Bio::EBI::SOAP (lib/bio/io/ebisoap.rb)
* Bio::EBI::SOAP (lib/bio/io/ebisoap.rb) is removed because
Bio::SOAPWSDL is removed.
lib/bio/io/ebisoap.rb | 158 --------------------------------------------------
1 file changed, 158 deletions(-)
delete mode 100644 lib/bio/io/ebisoap.rb
commit 79b4705bac82fe17b12c649172a629d3de41cbdf
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Jun 30 00:12:36 2015 +0900
not to load removed Bio::SOAPWSDL from lib/bio/io/soapwsdl.rb
lib/bio.rb | 1 -
1 file changed, 1 deletion(-)
commit 03ced6a70973557532517c70dac183775bd11fa7
Author: Naohisa Goto <ng@bioruby.org>
Date: Mon Jun 29 23:59:28 2015 +0900
remove Bio::SOAPWSDL (lib/bio/io/soapwsdl.rb) and tests
* Bio::SOAPWSDL is removed because SOAP4R (SOAP/WSDL library in Ruby)
is no longer bundled with Ruby since Ruby 1.9. For Ruby 1.9 or later,
some gems of SOAP4R are available, but we think they are not
well-maintained. Moreover, many SOAP servers have been retired
(see previous commits). So, we give up maintaining Bio::SOAPWSDL.
lib/bio/io/soapwsdl.rb | 119 -----------------------------------
test/network/bio/io/test_soapwsdl.rb | 53 ----------------
test/unit/bio/io/test_soapwsdl.rb | 33 ----------
3 files changed, 205 deletions(-)
delete mode 100644 lib/bio/io/soapwsdl.rb
delete mode 100644 test/network/bio/io/test_soapwsdl.rb
delete mode 100644 test/unit/bio/io/test_soapwsdl.rb
commit d927652e9f5d241e3c1b13b7d760f5a190b72e50
Author: Naohisa Goto <ng@bioruby.org>
Date: Mon Jun 29 23:35:38 2015 +0900
delete old comment-out lines about Bio::DDBJ::XML
lib/bio.rb | 5 -----
1 file changed, 5 deletions(-)
commit b995251bf96b8983def36e77bc94d6f0c0f2c78c
Author: Naohisa Goto <ng@bioruby.org>
Date: Mon Jun 29 23:29:47 2015 +0900
do not load Bio::HGC::HiGet from deleted lib/bio/io/higet.rb
lib/bio.rb | 4 ----
1 file changed, 4 deletions(-)
commit 6191020ed1e150f9e70de687375528a899fcf8ef
Author: Naohisa Goto <ng@bioruby.org>
Date: Mon Jun 29 23:27:41 2015 +0900
remove lib/bio/io/higet.rb because of the server down for a long time
lib/bio/io/higet.rb | 73 -----------------------------------------------------
1 file changed, 73 deletions(-)
delete mode 100644 lib/bio/io/higet.rb
commit 5a527c5cdd513d72ad5817c66ac87e7613395e26
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Jun 27 02:33:46 2015 +0900
add/modify about removed features and incompatible changes
RELEASE_NOTES.rdoc | 71 +++++++++++++++++++++++++++++++++++++++++++++++++++---
1 file changed, 67 insertions(+), 4 deletions(-)
commit 1886314d2b8dd7d4b3e86c7b93134facd881127a
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Jun 27 01:24:36 2015 +0900
regenerate bioruby.gemspec with rake regemspec
bioruby.gemspec | 1 -
1 file changed, 1 deletion(-)
commit 724e9c1c039dcc7fa19fb15de0313218a87f9868
Author: Naohisa Goto <ng@bioruby.org>
Date: Thu Jun 25 23:34:44 2015 +0900
extconf.rb is deleted because no native extensions are included
* extconf.rb is deleted because no native extensions are included in
BioRuby and to avoid potential confusions. Nowadays, extconf.rb is
usually used only for building native extensions. Use gem or
setup.rb to install BioRuby.
extconf.rb | 2 --
1 file changed, 2 deletions(-)
delete mode 100644 extconf.rb
commit d42a1cb1df17e0c11ca0407dc05e1271cd74a0d7
Author: Naohisa Goto <ng@bioruby.org>
Date: Wed Jun 24 22:29:28 2015 +0900
Ruby 2.3 support: IO#close to closed IO object is allowed without error.
test/unit/bio/io/flatfile/test_buffer.rb | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
commit 5ea39188ac3cc2609397b2d8864a2019ea6b93d2
Author: Naohisa Goto <ng@bioruby.org>
Date: Fri May 1 23:42:39 2015 +0900
s.license = "Ruby"
* bioruby.gemspec.erb, bioruby.gemspec: s.license = "Ruby"
Thanks to Peter Cock who reports a patch.
(https://github.com/bioruby/bioruby/issues/101 )
bioruby.gemspec | 1 +
bioruby.gemspec.erb | 1 +
2 files changed, 2 insertions(+)
commit 2b18ae005a592ea4ae7b632f7e658d4bbf153fd8
Author: Naohisa Goto <ng@bioruby.org>
Date: Fri May 1 23:39:36 2015 +0900
remove deprecated Gem::Specification#rubyforge_project
bioruby.gemspec | 2 +-
bioruby.gemspec.erb | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
commit 3a1d89bde9af44793c850b1cde950e3e3042fb8d
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Mar 28 01:52:31 2015 +0900
delete obsolete $Id:$ line
lib/bio/db/gff.rb | 1 -
1 file changed, 1 deletion(-)
commit 165ebf29ba192c7a7e7f1633809d34966c2aeed1
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Mar 28 01:51:47 2015 +0900
suppress "character class has duplicated range" warnings
lib/bio/db/gff.rb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit 715ee5aa3a797737d390365b2c202cc9a0effea5
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Mar 28 01:37:35 2015 +0900
delete obsolete $Id:$ line
lib/bio/appl/sosui/report.rb | 1 -
1 file changed, 1 deletion(-)
commit 71e34938f1228911657ebf00720712a17bc89ea9
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Mar 28 01:36:44 2015 +0900
comment out a line to suppress warning: assigned but unused variable - tmh
lib/bio/appl/sosui/report.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit fc518f3826bf60d70ebdbd70acdba512f1462c6f
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Mar 28 01:34:22 2015 +0900
delete obsolete $Id:$ line
lib/bio/db/sanger_chromatogram/chromatogram.rb | 1 -
1 file changed, 1 deletion(-)
commit 516c467dfb245d99c4f7f77e251c77ffc5d274ca
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Mar 28 01:33:19 2015 +0900
suppress warning: instance variable @aqual not initialized
lib/bio/db/sanger_chromatogram/chromatogram.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 56d2e472196ba03ba6aa2a2bdf8d3de81272fa15
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Mar 28 01:30:26 2015 +0900
delete obsolete $Id:$ line
lib/bio/db/kegg/module.rb | 1 -
1 file changed, 1 deletion(-)
commit fb6b9b6578d08a87c1974e58f6d1f231b4ad52c0
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Mar 28 01:28:05 2015 +0900
suppress "instance variable @XXX not initialized" warnings
lib/bio/db/kegg/module.rb | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
commit 9f70b8d54abd9adbd50d46a3176f23f51af01cc7
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Mar 28 01:25:50 2015 +0900
delete obsolete $Id:$ line
lib/bio/db/kegg/pathway.rb | 1 -
1 file changed, 1 deletion(-)
commit 3844b9bb69e1f657c9b85bb20a4d209828b78b12
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Mar 28 01:25:03 2015 +0900
suppress "instance variable @XXX not initialized" warnings
lib/bio/db/kegg/pathway.rb | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
commit 8d857e246eacb6c9f8fbbceaa2fba7f1211e2b86
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Mar 28 01:20:13 2015 +0900
delete obsolete $Id:$ line
lib/bio/db/fasta/defline.rb | 1 -
1 file changed, 1 deletion(-)
commit aadf285bc9e618b7813b42fd39e0b1966a04385c
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Mar 28 01:18:43 2015 +0900
suppress defline.rb:393: warning: character class has duplicated range
lib/bio/db/fasta/defline.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 5297db11eb165885c4f15b914c2132c4122ae5a9
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Mar 28 01:11:43 2015 +0900
delete obsolete $Id:$ line
test/unit/bio/test_db.rb | 1 -
1 file changed, 1 deletion(-)
commit 20381ad45c674c0844a92891cb8ae71edaa6e333
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Mar 28 01:08:04 2015 +0900
suppress "warning: instance variable @tagsize not initialized"
* test/unit/bio/test_db.rb: to suppress "warning: instance variable
@tagsize not initialized" when executing Bio::TestDB#test_fetch,
@tagsize is set in setup.
test/unit/bio/test_db.rb | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
commit d194edfc68bc10fde11f2cf014a59113ddc63b24
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Mar 28 00:59:21 2015 +0900
delete obsolete $Id:$ line
lib/bio/data/codontable.rb | 1 -
1 file changed, 1 deletion(-)
commit fac51f540dc7b33cd3ec51f97b5cb1ea587a461e
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Mar 28 00:57:28 2015 +0900
suppress warning: instance variable @reverse not initialized
lib/bio/data/codontable.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 4e85315f03e374157f832c8435d0d2f43cd969af
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Mar 28 00:55:25 2015 +0900
delete obsolete $Id:$ line
lib/bio/appl/iprscan/report.rb | 1 -
1 file changed, 1 deletion(-)
commit dafa7ce62378ff1605a295f8c620eb3a0a4a3c57
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Mar 28 00:54:37 2015 +0900
suppress warning: instance variable @ipr_ids not initialized
lib/bio/appl/iprscan/report.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 52b6073997c1b26fea9d4aae3154b37575944d4d
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Mar 28 00:50:43 2015 +0900
suppress "method redefined" warnings and fill RDoc for some methods
lib/bio/db/phyloxml/phyloxml_elements.rb | 46 ++++++++++++++++++++++++--------
1 file changed, 35 insertions(+), 11 deletions(-)
commit 3d2e99fe993d76d5ece5bdbcd2e9541fa098c4dd
Author: Naohisa Goto <ng@bioruby.org>
Date: Sat Mar 28 00:36:51 2015 +0900
suppress "instance variable @XXX not initialized" warnings
lib/bio/db/phyloxml/phyloxml_elements.rb | 88 ++++++++++++++++----------------
1 file changed, 44 insertions(+), 44 deletions(-)
commit 02d4f98eae3934d8ad9c950b41132eb14653fe27
Author: Naohisa Goto <ng@bioruby.org>
Date: Thu Mar 26 20:33:35 2015 +0900
suppress warning: instance variable @uri not initialized
lib/bio/db/phyloxml/phyloxml_elements.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 94277712e9dd000c2d9bf5b6ebfd84d0f2fc3b59
Author: Naohisa Goto <ng@bioruby.org>
Date: Thu Mar 26 01:47:45 2015 +0900
suppress warning: instance variable @format not initialized
lib/bio/db/fastq.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit e61e1071e4bb7dd9ee995c3a7f864c2ef4384edd
Author: Naohisa Goto <ng@bioruby.org>
Date: Thu Mar 26 01:40:33 2015 +0900
suppress "instance variable not initialized" warnings
* suppress warning: instance variable @sc_match not initialized
* suppress warning: instance variable @sc_mismatch not initialized
* suppress warning: instance variable @gaps not initialized
* suppress warning: instance variable @hit_frame not initialized
* suppress warning: instance variable @query_frame not initialized
lib/bio/appl/blast/format0.rb | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
commit 08c458c74a7a34e340e09053cbc0f9c071e27395
Author: Naohisa Goto <ng@bioruby.org>
Date: Thu Mar 26 01:09:16 2015 +0900
suppress warning: instance variable @pattern not initialized
lib/bio/appl/blast/format0.rb | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
commit 33d7eed180fd601972724f4b992f1a17c689ef62
Author: Naohisa Goto <ng@bioruby.org>
Date: Thu Mar 26 00:57:02 2015 +0900
Test bug fix: fix typo of test target method
test/network/bio/test_command.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 76a98bce1affac03483c08f803d4314b42a0a3d3
Author: Naohisa Goto <ng@bioruby.org>
Date: Thu Mar 26 00:32:25 2015 +0900
Incompatible Change: Bio::Command.make_cgi_params rejects single String
* Incompatible Change: Bio::Command.make_cgi_params no longer accepts a
single String as a form. Use Hash or Array containing key-value pairs
as String objects. This change also affects Bio::Command.post_form
and Bio::Command.http_post_form which internally use this method.
lib/bio/command.rb | 2 +-
test/unit/bio/test_command.rb | 9 +++++----
2 files changed, 6 insertions(+), 5 deletions(-)
commit b1612545a7516befd850a6d5925aa73bbaa4b4b0
Author: Naohisa Goto <ng@bioruby.org>
Date: Wed Mar 25 02:36:41 2015 +0900
delete obsolete $Id:$ line
lib/bio/io/togows.rb | 1 -
1 file changed, 1 deletion(-)
commit 4d5a419cc78ff2a79cff2812adc6f16f286204e8
Author: Naohisa Goto <ng@bioruby.org>
Date: Wed Mar 25 02:35:45 2015 +0900
delete obsolete $Id:$ line
test/network/bio/io/test_togows.rb | 1 -
1 file changed, 1 deletion(-)
commit a8d2c4cac665b4bb8140df329a9cc1d6e5e2d02d
Author: Naohisa Goto <ng@bioruby.org>
Date: Wed Mar 25 02:35:03 2015 +0900
delete obsolete $Id:$ line
test/unit/bio/io/test_togows.rb | 1 -
1 file changed, 1 deletion(-)
commit dd0967db3743789ea5aa48623df8d97f93062694
Author: Naohisa Goto <ng@bioruby.org>
Date: Wed Mar 25 02:33:49 2015 +0900
test_make_path: add test data using Symbol objects
test/unit/bio/io/test_togows.rb | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
commit e07158a60ca666b5d625408bcf8fa602fd8114a8
Author: Naohisa Goto <ng@bioruby.org>
Date: Wed Mar 25 02:22:31 2015 +0900
Bio::TogoWS::REST#entry: comma between IDs should NOT be escaped to %2C
lib/bio/io/togows.rb | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
commit 98546289b2f2da2dc7f9586fd5e2942da4d8f3a8
Author: Naohisa Goto <ng@bioruby.org>
Date: Wed Mar 25 02:00:17 2015 +0900
Bug fix: search with offset did not work due to TogoWS server change
* lib/bio/io/togows.rb: Bug fix: Bio::TogoWS::REST#search with offset
and limit did not work due to TogoWS server change about URI escape.
For example,
http://togows.org/search/nuccore/Milnesium+tardigradum/2%2C3 fails,
http://togows.org/search/nuccore/Milnesium+tardigradum/2,3 works fine.
lib/bio/io/togows.rb | 24 +++++++++++++++++++++---
1 file changed, 21 insertions(+), 3 deletions(-)
commit 7097f80e315a0a6332e7a76a5bb261649e8dcc1a
Author: Naohisa Goto <ng@bioruby.org>
Date: Wed Mar 25 01:33:26 2015 +0900
Bug fix due to TogoWS convert method spec change
* lib/bio/io/togows.rb: Bug fix: Bio::TogoWS::REST#convert did not work
because of the spec change of TogoWS REST API.
lib/bio/io/togows.rb | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
commit 1a9b1063af4c0b32cd287d4a2c2466343aeddb98
Author: Naohisa Goto <ng@bioruby.org>
Date: Wed Mar 25 01:30:34 2015 +0900
improve tests for bio/command.rb for methods using http protocol
test/network/bio/test_command.rb | 67 ++++++++++++++++++++++++++++++++++++++--
1 file changed, 65 insertions(+), 2 deletions(-)
commit c63920e4d8569e3eaef201d4d60fcddfa15f1f34
Author: Naohisa Goto <ng@bioruby.org>
Date: Wed Mar 25 01:30:06 2015 +0900
delete obsolete $Id:$ line
lib/bio/command.rb | 1 -
1 file changed, 1 deletion(-)
commit 1683edac0e9ecbf819ffcd332a6db2d25c2d596a
Author: Naohisa Goto <ng@bioruby.org>
Date: Wed Mar 25 01:28:28 2015 +0900
new methods Bio::Command.http_post and Bio::Command.post to post raw data
lib/bio/command.rb | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 61 insertions(+)
commit a40157205282e148bf3a2e43aed1e08d713fb598
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Mar 24 00:46:23 2015 +0900
suppress warnings "instance variable @circular not initialized"
lib/bio/util/restriction_enzyme/range/sequence_range.rb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit abcac8de85c9606f6a1879fe9d2ae559911708c9
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Mar 24 00:29:42 2015 +0900
delete obsolete $Id:$ line
test/unit/bio/io/flatfile/test_autodetection.rb | 1 -
1 file changed, 1 deletion(-)
commit 1b5bf586af238b712a9f640087421fd299376c2d
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Mar 24 00:28:38 2015 +0900
suppress warning: assigned but unused variable - length
test/unit/bio/io/flatfile/test_autodetection.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 5497068d17c2794ab2b6ef1e603e5478a86537c6
Author: Naohisa Goto <ng@bioruby.org>
Date: Tue Mar 24 00:22:54 2015 +0900
add/modify assertions to suppress "unused variable" warnings
test/unit/bio/db/genbank/test_genbank.rb | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
commit d5bafd8b7ee28ab0418b09fd6dd47abcb9eb1ee5
Author: Naohisa Goto <ng@bioruby.org>
Date: Mon Mar 23 23:57:56 2015 +0900
delete obsolete $Id:$ line
lib/bio/appl/blast.rb | 1 -
1 file changed, 1 deletion(-)
commit bbd60d1aae7c894f914b7265d2de22fea5eb3faf
Author: Naohisa Goto <ng@bioruby.org>
Date: Mon Mar 23 23:56:42 2015 +0900
suppress warning: assigned but unused variable - dummy
lib/bio/appl/blast.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 4a91502ccf14ab8655645144120aa97d0c8313a5
Author: Naohisa Goto <ng@bioruby.org>
Date: Mon Mar 23 20:32:59 2015 +0900
delete obsolete $Id:$ line
lib/bio/shell/setup.rb | 1 -
1 file changed, 1 deletion(-)
commit c437a4078ff8e2869b9c1ab3543022db373a93c3
Author: Naohisa Goto <ng@bioruby.org>
Date: Mon Mar 23 20:32:20 2015 +0900
suppress warning: instance variable @mode not initialized
lib/bio/shell/setup.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 8967cf280d5ca8491d57a11e4f3ffab7369c4ea8
Author: Naohisa Goto <ng@bioruby.org>
Date: Mon Mar 23 20:28:50 2015 +0900
delete obsolete $Id:$ line
lib/bio/shell/irb.rb | 1 -
1 file changed, 1 deletion(-)
commit 42b5f030067be4bc9c53ccb4c06ccfc5e8d9df03
Author: Naohisa Goto <ng@bioruby.org>
Date: Mon Mar 23 20:28:27 2015 +0900
change deprecated method File.exists? to File.exist?
lib/bio/shell/irb.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 389ad2f311f161f235db2373aeb2f5500b1ea65f
Author: Naohisa Goto <ng@bioruby.org>
Date: Mon Mar 23 20:27:01 2015 +0900
delete obsolete $Id:$ line
lib/bio/shell/interface.rb | 1 -
1 file changed, 1 deletion(-)
commit de5949798d66c16d2b5e2cf8ba7192049ec99c5b
Author: Naohisa Goto <ng@bioruby.org>
Date: Mon Mar 23 20:26:37 2015 +0900
change deprecated method File.exists? to File.exist?
lib/bio/shell/interface.rb | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
commit c8907059a716a8778e333755c8fb53bb2a0c7158
Author: Naohisa Goto <ng@bioruby.org>
Date: Mon Mar 23 20:24:58 2015 +0900
delete obsolete $Id:$ line
lib/bio/shell/core.rb | 1 -
1 file changed, 1 deletion(-)
commit 1fe5903f8acd8045d203465a099a45218e7e3891
Author: Naohisa Goto <ng@bioruby.org>
Date: Mon Mar 23 20:24:25 2015 +0900
change deprecated method File.exists? to File.exist?
lib/bio/shell/core.rb | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
commit 929207c6f186c81f076fab9b1bbbd23c4b966f4e
Author: Naohisa Goto <ng@bioruby.org>
Date: Mon Mar 23 20:20:05 2015 +0900
delete obsolete $Id:$ line
test/unit/bio/db/pdb/test_pdb.rb | 1 -
1 file changed, 1 deletion(-)
commit e75c57fcd7abc56ba6fcbf1996e491aca890f5b1
Author: Naohisa Goto <ng@bioruby.org>
Date: Mon Mar 23 20:19:30 2015 +0900
suppress "assigned but unused variable" warnings
test/unit/bio/db/pdb/test_pdb.rb | 21 ++++++++++++++-------
1 file changed, 14 insertions(+), 7 deletions(-)
commit b458301f47322c265fce27efd0ed71443c17d9d7
Author: Naohisa Goto <ng@bioruby.org>
Date: Mon Mar 23 18:34:12 2015 +0900
delete obsolete $Id:$ line
lib/bio/shell/plugin/entry.rb | 1 -
1 file changed, 1 deletion(-)