Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
bmesuere committed Jun 12, 2015
1 parent a31d570 commit eb6dd08
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 22 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ The Unipept CLI is available as a *gem*. This means it can easily be installed w

```bash
$ gem install unipept
Successfully installed unipept-0.7.1
Parsing documentation for unipept-0.7.1
Successfully installed unipept-0.8.0
Parsing documentation for unipept-0.8.0
Done installing documentation for unipept after 0 seconds
1 gem installed
```
Expand All @@ -33,7 +33,7 @@ After successful installation, the unipept command should be available:

```bash
$ unipept -v
0.7.1
0.8.0
```

The help can be accessed by running `unipept -h`.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.1
0.8.0
61 changes: 43 additions & 18 deletions unipept.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,15 @@
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
# stub: unipept 0.7.1 ruby lib
# stub: unipept 0.8.0 ruby lib

Gem::Specification.new do |s|
s.name = "unipept"
s.version = "0.7.1"
s.version = "0.8.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
s.authors = ["Toon Willems", "Bart Mesuere", "Tom Naessens"]
s.date = "2015-05-20"
s.date = "2015-06-12"
s.description = " Command line interface to the Unipept (http://unipept.ugent.be) web services\n (pept2lca, taxa2lca, pept2taxa and taxonomy) and some utility commands for\n handling proteins using the command line.\n"
s.email = "unipept@ugent.be"
s.executables = ["unipept", "prot2pept", "peptfilter", "uniprot"]
Expand All @@ -21,6 +20,8 @@ Gem::Specification.new do |s|
]
s.files = [
".document",
".rubocop.yml",
".travis.yml",
"Gemfile",
"Gemfile.lock",
"LICENSE.txt",
Expand All @@ -31,26 +32,47 @@ Gem::Specification.new do |s|
"bin/prot2pept",
"bin/unipept",
"bin/uniprot",
"lib/unipept.rb",
"lib/unipept/batch_order.rb",
"lib/unipept/commands.rb",
"lib/unipept/commands/api_runner.rb",
"lib/unipept/commands/pept2lca.rb",
"lib/unipept/commands/pept2prot.rb",
"lib/unipept/commands/pept2taxa.rb",
"lib/unipept/commands/taxa2lca.rb",
"lib/unipept/commands/taxonomy.rb",
"lib/unipept/configuration.rb",
"lib/unipept/formatters.rb",
"lib/unipept/version.rb",
"lib/batch_iterator.rb",
"lib/batch_order.rb",
"lib/commands.rb",
"lib/commands/peptfilter.rb",
"lib/commands/prot2pept.rb",
"lib/commands/unipept.rb",
"lib/commands/unipept/api_runner.rb",
"lib/commands/unipept/config.rb",
"lib/commands/unipept/pept2lca.rb",
"lib/commands/unipept/pept2prot.rb",
"lib/commands/unipept/pept2taxa.rb",
"lib/commands/unipept/taxa2lca.rb",
"lib/commands/unipept/taxonomy.rb",
"lib/commands/uniprot.rb",
"lib/configuration.rb",
"lib/formatters.rb",
"lib/version.rb",
"test/commands/test_peptfilter.rb",
"test/commands/test_prot2pept.rb",
"test/commands/test_unipept.rb",
"test/commands/test_uniprot.rb",
"test/commands/unipept/test_api_runner.rb",
"test/commands/unipept/test_config.rb",
"test/commands/unipept/test_pept2lca.rb",
"test/commands/unipept/test_pept2prot.rb",
"test/commands/unipept/test_pept2taxa.rb",
"test/commands/unipept/test_taxa2lca.rb",
"test/commands/unipept/test_taxonomy.rb",
"test/helper.rb",
"test/test_unipept.rb",
"test/test_bach_order.rb",
"test/test_base.rb",
"test/test_batch_iterator.rb",
"test/test_configuration.rb",
"test/test_formatters.rb",
"unipept.gemspec"
]
s.homepage = "https://github.com/unipept/unipept-cli/"
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.required_ruby_version = Gem::Requirement.new(">= 1.9.3")
s.rubygems_version = "2.2.2"
s.rubygems_version = "2.1.11"
s.summary = "Command line interface to Unipept web services."

if s.respond_to? :specification_version then
Expand All @@ -63,13 +85,15 @@ Gem::Specification.new do |s|
s.add_development_dependency(%q<minitest>, [">= 0"])
s.add_development_dependency(%q<rubocop>, [">= 0"])
s.add_development_dependency(%q<jeweler>, [">= 0"])
s.add_development_dependency(%q<coveralls>, [">= 0"])
else
s.add_dependency(%q<cri>, ["~> 2.7"])
s.add_dependency(%q<typhoeus>, ["~> 0.6"])
s.add_dependency(%q<rake>, [">= 0"])
s.add_dependency(%q<minitest>, [">= 0"])
s.add_dependency(%q<rubocop>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
s.add_dependency(%q<coveralls>, [">= 0"])
end
else
s.add_dependency(%q<cri>, ["~> 2.7"])
Expand All @@ -78,6 +102,7 @@ Gem::Specification.new do |s|
s.add_dependency(%q<minitest>, [">= 0"])
s.add_dependency(%q<rubocop>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
s.add_dependency(%q<coveralls>, [">= 0"])
end
end

0 comments on commit eb6dd08

Please sign in to comment.