-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates website to the v0.8.2 conventions of the kmerdb package.
- Loading branch information
1 parent
c1dc6a4
commit d8499cd
Showing
8 changed files
with
351 additions
and
215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
forty | ||
kmerdbwebsite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
ruby-2.4.2 | ||
ruby-3.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,5 @@ source "https://rubygems.org" | |
gemspec | ||
|
||
gem "jekyll-toc", "~> 0.16.1" | ||
|
||
gem "webrick", "~> 1.8" |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,15 +20,15 @@ image: assets/images/installation-symbol.png | |
Install the latest version from PyPI | ||
|
||
```bash | ||
pip install kdb | ||
pip install kmerdb | ||
``` | ||
|
||
Install locally for development | ||
|
||
```bashn | ||
git clone [email protected]:MatthewRalston/kdb.git | ||
cd kdb | ||
git clone [email protected]:MatthewRalston/kmerdb.git | ||
cd kmerdb | ||
pip install -r requirements.txt | ||
pip install -e . | ||
pip install . | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
# coding: utf-8 | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "KDB_jekyll_theme_forty" | ||
spec.name = "kmerdb_jekyll_theme_forty" | ||
spec.version = "1.2" | ||
spec.authors = ["Matthew Ralston"] | ||
spec.email = ["mrals89@gmail.com"] | ||
spec.email = ["mralston.development@gmail.com"] | ||
|
||
spec.summary = %q{A website for bioinformatics computation based on the forty theme by HTML5 UP.} | ||
spec.homepage = "https://github.com/MatthewRalston/kdb" | ||
spec.homepage = "https://github.com/MatthewRalston/kmerdb" | ||
spec.license = "Apache" | ||
|
||
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(assets|_layouts|_includes|_sass|LICENSE|README)}i) } | ||
|
||
spec.add_development_dependency "jekyll", "~> 4.0" | ||
spec.add_development_dependency "bundler", "~> 2.1" | ||
spec.add_development_dependency "jekyll", "~> 4.2" | ||
spec.add_development_dependency "bundler", "~> 2.5" | ||
spec.add_development_dependency "webrick", "~> 1.8" | ||
end |
Oops, something went wrong.