bio-twobit 0.1.3 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile DELETED
@@ -1,14 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- source "https://rubygems.org"
4
-
5
- # Specify your gem's dependencies in bio-twobit.gemspec
6
- gemspec
7
-
8
- gem "rake"
9
-
10
- gem "rake-compiler"
11
-
12
- gem "test-unit"
13
-
14
- gem "rubocop"
data/Rakefile DELETED
@@ -1,25 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "bundler/gem_tasks"
4
- require "rake/testtask"
5
-
6
- Rake::TestTask.new(:test) do |t|
7
- t.libs << "test"
8
- t.libs << "lib"
9
- t.test_files = FileList["test/**/*_test.rb"]
10
- end
11
-
12
- require "rubocop/rake_task"
13
-
14
- RuboCop::RakeTask.new
15
-
16
- require "rake/extensiontask"
17
-
18
- task build: :compile
19
-
20
- Rake::ExtensionTask.new("twobit") do |ext|
21
- ext.lib_dir = "lib/bio/twobit"
22
- ext.ext_dir = "ext/bio/twobit"
23
- end
24
-
25
- task default: %i[clobber compile test rubocop]
data/bio-twobit.gemspec DELETED
@@ -1,25 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative "lib/bio/twobit/version"
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = "bio-twobit"
7
- spec.version = Bio::TwoBit::VERSION
8
- spec.authors = ["kojix2"]
9
- spec.email = ["2xijok@gmail.com"]
10
-
11
- spec.summary = "A ruby library for accessing 2bit files"
12
- spec.description = "This is a Ruby binding for lib2bit(https://github.com/dpryan79/lib2bit), " \
13
- "which provides high-speed access to genomic data in 2bit file format."
14
- spec.homepage = "https://github.com/ruby-on-bioc/bio-twobit"
15
- spec.license = "MIT"
16
- spec.required_ruby_version = ">= 2.6.0"
17
-
18
- spec.files = Dir.chdir(File.expand_path(__dir__)) do
19
- `git ls-files -z`.split("\x0").reject do |f|
20
- (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
21
- end
22
- end
23
- spec.require_paths = ["lib"]
24
- spec.extensions = ["ext/bio/twobit/extconf.rb"]
25
- end