bio-isoelectric_point 0.1.2 → 0.1.3
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.
- data/.travis.yml +11 -0
- data/Gemfile +1 -1
- data/README.rdoc +1 -0
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/bio-isoelectric_point.gemspec +7 -6
- metadata +14 -13
data/.travis.yml
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
language: ruby
|
|
2
|
+
rvm:
|
|
3
|
+
- 1.8.7
|
|
4
|
+
- 1.9.2
|
|
5
|
+
- 1.9.3
|
|
6
|
+
- jruby-18mode # JRuby in 1.8 mode
|
|
7
|
+
- jruby-19mode # JRuby in 1.9 mode
|
|
8
|
+
- rbx-18mode
|
|
9
|
+
- rbx-19mode
|
|
10
|
+
# uncomment this line if your project needs to run something other than `rake`:
|
|
11
|
+
# script: bundle exec rspec spec
|
data/Gemfile
CHANGED
data/README.rdoc
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
{<img src="https://secure.travis-ci.org/georgeG/bioruby-isoelectric_point.png?branch=master" alt="Build Status" />}[http://travis-ci.org/georgeG/bioruby-isoelectric_point]
|
|
1
2
|
= bio-isoelectric_point
|
|
2
3
|
|
|
3
4
|
The isoelectric point (pI), sometimes abbreviated to iep, is the pH at which a particular molecule or surface carries no net electrical charge.
|
data/Rakefile
CHANGED
|
@@ -13,7 +13,7 @@ require 'jeweler'
|
|
|
13
13
|
Jeweler::Tasks.new do |gem|
|
|
14
14
|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
|
15
15
|
gem.name = "bio-isoelectric_point"
|
|
16
|
-
gem.homepage = "http://github.com/
|
|
16
|
+
gem.homepage = "http://github.com/georgeG/bioruby-isoelectric_point"
|
|
17
17
|
gem.license = "Ruby"
|
|
18
18
|
gem.summary = %Q{A bioruby plugin for calculating the isoelectric point and the charge of a protein sequence.}
|
|
19
19
|
gem.description = %Q{A bioruby plugin for calculating the isoelectric point of a protein }
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.3
|
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "bio-isoelectric_point"
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["George Githinji", "Pascal Betz"]
|
|
12
|
-
s.date = "2012-
|
|
12
|
+
s.date = "2012-03-01"
|
|
13
13
|
s.description = "A bioruby plugin for calculating the isoelectric point of a protein "
|
|
14
14
|
s.email = "georgkam@gmail.com"
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -17,6 +17,7 @@ Gem::Specification.new do |s|
|
|
|
17
17
|
"README.rdoc"
|
|
18
18
|
]
|
|
19
19
|
s.files = [
|
|
20
|
+
".travis.yml",
|
|
20
21
|
"Gemfile",
|
|
21
22
|
"LICENSE.txt",
|
|
22
23
|
"README.rdoc",
|
|
@@ -32,7 +33,7 @@ Gem::Specification.new do |s|
|
|
|
32
33
|
"test/helper.rb",
|
|
33
34
|
"test/test_bio-isoelectric_point.rb"
|
|
34
35
|
]
|
|
35
|
-
s.homepage = "http://github.com/
|
|
36
|
+
s.homepage = "http://github.com/georgeG/bioruby-isoelectric_point"
|
|
36
37
|
s.licenses = ["Ruby"]
|
|
37
38
|
s.require_paths = ["lib"]
|
|
38
39
|
s.rubygems_version = "1.8.17"
|
|
@@ -43,18 +44,18 @@ Gem::Specification.new do |s|
|
|
|
43
44
|
|
|
44
45
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
45
46
|
s.add_development_dependency(%q<shoulda>, ["~> 2.11.3"])
|
|
46
|
-
s.add_development_dependency(%q<bundler>, ["~> 1.
|
|
47
|
+
s.add_development_dependency(%q<bundler>, ["~> 1.0.22"])
|
|
47
48
|
s.add_development_dependency(%q<jeweler>, ["~> 1.8.3"])
|
|
48
49
|
s.add_development_dependency(%q<bio>, [">= 1.4.2"])
|
|
49
50
|
else
|
|
50
51
|
s.add_dependency(%q<shoulda>, ["~> 2.11.3"])
|
|
51
|
-
s.add_dependency(%q<bundler>, ["~> 1.
|
|
52
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.22"])
|
|
52
53
|
s.add_dependency(%q<jeweler>, ["~> 1.8.3"])
|
|
53
54
|
s.add_dependency(%q<bio>, [">= 1.4.2"])
|
|
54
55
|
end
|
|
55
56
|
else
|
|
56
57
|
s.add_dependency(%q<shoulda>, ["~> 2.11.3"])
|
|
57
|
-
s.add_dependency(%q<bundler>, ["~> 1.
|
|
58
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.22"])
|
|
58
59
|
s.add_dependency(%q<jeweler>, ["~> 1.8.3"])
|
|
59
60
|
s.add_dependency(%q<bio>, [">= 1.4.2"])
|
|
60
61
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bio-isoelectric_point
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -10,11 +10,11 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2012-
|
|
13
|
+
date: 2012-03-01 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: shoulda
|
|
17
|
-
requirement: &
|
|
17
|
+
requirement: &2153243120 !ruby/object:Gem::Requirement
|
|
18
18
|
none: false
|
|
19
19
|
requirements:
|
|
20
20
|
- - ~>
|
|
@@ -22,21 +22,21 @@ dependencies:
|
|
|
22
22
|
version: 2.11.3
|
|
23
23
|
type: :development
|
|
24
24
|
prerelease: false
|
|
25
|
-
version_requirements: *
|
|
25
|
+
version_requirements: *2153243120
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: bundler
|
|
28
|
-
requirement: &
|
|
28
|
+
requirement: &2152637740 !ruby/object:Gem::Requirement
|
|
29
29
|
none: false
|
|
30
30
|
requirements:
|
|
31
31
|
- - ~>
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 1.
|
|
33
|
+
version: 1.0.22
|
|
34
34
|
type: :development
|
|
35
35
|
prerelease: false
|
|
36
|
-
version_requirements: *
|
|
36
|
+
version_requirements: *2152637740
|
|
37
37
|
- !ruby/object:Gem::Dependency
|
|
38
38
|
name: jeweler
|
|
39
|
-
requirement: &
|
|
39
|
+
requirement: &2153055200 !ruby/object:Gem::Requirement
|
|
40
40
|
none: false
|
|
41
41
|
requirements:
|
|
42
42
|
- - ~>
|
|
@@ -44,10 +44,10 @@ dependencies:
|
|
|
44
44
|
version: 1.8.3
|
|
45
45
|
type: :development
|
|
46
46
|
prerelease: false
|
|
47
|
-
version_requirements: *
|
|
47
|
+
version_requirements: *2153055200
|
|
48
48
|
- !ruby/object:Gem::Dependency
|
|
49
49
|
name: bio
|
|
50
|
-
requirement: &
|
|
50
|
+
requirement: &2153045460 !ruby/object:Gem::Requirement
|
|
51
51
|
none: false
|
|
52
52
|
requirements:
|
|
53
53
|
- - ! '>='
|
|
@@ -55,7 +55,7 @@ dependencies:
|
|
|
55
55
|
version: 1.4.2
|
|
56
56
|
type: :development
|
|
57
57
|
prerelease: false
|
|
58
|
-
version_requirements: *
|
|
58
|
+
version_requirements: *2153045460
|
|
59
59
|
description: ! 'A bioruby plugin for calculating the isoelectric point of a protein '
|
|
60
60
|
email: georgkam@gmail.com
|
|
61
61
|
executables: []
|
|
@@ -64,6 +64,7 @@ extra_rdoc_files:
|
|
|
64
64
|
- LICENSE.txt
|
|
65
65
|
- README.rdoc
|
|
66
66
|
files:
|
|
67
|
+
- .travis.yml
|
|
67
68
|
- Gemfile
|
|
68
69
|
- LICENSE.txt
|
|
69
70
|
- README.rdoc
|
|
@@ -78,7 +79,7 @@ files:
|
|
|
78
79
|
- test/extensions_test.rb
|
|
79
80
|
- test/helper.rb
|
|
80
81
|
- test/test_bio-isoelectric_point.rb
|
|
81
|
-
homepage: http://github.com/
|
|
82
|
+
homepage: http://github.com/georgeG/bioruby-isoelectric_point
|
|
82
83
|
licenses:
|
|
83
84
|
- Ruby
|
|
84
85
|
post_install_message:
|
|
@@ -93,7 +94,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
93
94
|
version: '0'
|
|
94
95
|
segments:
|
|
95
96
|
- 0
|
|
96
|
-
hash:
|
|
97
|
+
hash: 4529780066200439352
|
|
97
98
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
98
99
|
none: false
|
|
99
100
|
requirements:
|