eutils 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/README.rdoc +2 -2
  2. data/Rakefile +3 -3
  3. data/VERSION +1 -1
  4. data/eutils.gemspec +7 -7
  5. metadata +6 -7
@@ -1,6 +1,6 @@
1
1
  = eutils
2
2
 
3
- Description goes here.
3
+ Lightweight Ruby API for NCBI Eutils. This gem only provides API for NCBI Eutils. If you need full access to other NCBI databases, try BioRuby (bio gem) instead.
4
4
 
5
5
  == Note on Patches/Pull Requests
6
6
 
@@ -14,4 +14,4 @@ Description goes here.
14
14
 
15
15
  == Copyright
16
16
 
17
- Copyright (c) 2010 Joon Lee. See LICENSE for details.
17
+ Copyright (c) 2010 Joon Lee aka seouri. See MIT-LICENSE for details.
data/Rakefile CHANGED
@@ -6,12 +6,12 @@ begin
6
6
  Jeweler::Tasks.new do |gem|
7
7
  gem.name = "eutils"
8
8
  gem.summary = %Q{Lightweight Ruby API for NCBI Eutils}
9
- gem.description = %Q{This gem only provides API for NCBI Eutils. If you need full access to other NCBI databases, try BioRuby (bio gem) instead.}
9
+ gem.description = %Q{Lightweight Ruby API for NCBI Eutils. This gem only provides API for NCBI Eutils. If you need full access to other NCBI databases, try BioRuby (bio gem) instead.}
10
10
  gem.email = "seouri@gmail.com"
11
11
  gem.homepage = "http://github.com/seouri/eutils"
12
- gem.authors = ["Joon Lee"]
12
+ gem.authors = ["Joon Lee, aka seouri"]
13
13
  gem.add_development_dependency "shoulda", ">= 0"
14
- gem.add_dependency "activesupport", ">= 3.0.0.rc2"
14
+ gem.add_dependency "activesupport", ">= 3.0.0"
15
15
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
16
16
  end
17
17
  Jeweler::GemcutterTasks.new
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.1.2
@@ -5,12 +5,12 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{eutils}
8
- s.version = "0.1.1"
8
+ s.version = "0.1.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["Joon Lee"]
12
- s.date = %q{2010-08-26}
13
- s.description = %q{This gem only provides API for NCBI Eutils. If you need full access to other NCBI databases, try BioRuby (bio gem) instead.}
11
+ s.authors = ["Joon Lee, aka seouri"]
12
+ s.date = %q{2010-08-30}
13
+ s.description = %q{Lightweight Ruby API for NCBI Eutils. This gem only provides API for NCBI Eutils. If you need full access to other NCBI databases, try BioRuby (bio gem) instead.}
14
14
  s.email = %q{seouri@gmail.com}
15
15
  s.extra_rdoc_files = [
16
16
  "README.rdoc"
@@ -43,14 +43,14 @@ Gem::Specification.new do |s|
43
43
 
44
44
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
45
45
  s.add_development_dependency(%q<shoulda>, [">= 0"])
46
- s.add_runtime_dependency(%q<activesupport>, [">= 3.0.0.rc2"])
46
+ s.add_runtime_dependency(%q<activesupport>, [">= 3.0.0"])
47
47
  else
48
48
  s.add_dependency(%q<shoulda>, [">= 0"])
49
- s.add_dependency(%q<activesupport>, [">= 3.0.0.rc2"])
49
+ s.add_dependency(%q<activesupport>, [">= 3.0.0"])
50
50
  end
51
51
  else
52
52
  s.add_dependency(%q<shoulda>, [">= 0"])
53
- s.add_dependency(%q<activesupport>, [">= 3.0.0.rc2"])
53
+ s.add_dependency(%q<activesupport>, [">= 3.0.0"])
54
54
  end
55
55
  end
56
56
 
metadata CHANGED
@@ -5,16 +5,16 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 1
9
- version: 0.1.1
8
+ - 2
9
+ version: 0.1.2
10
10
  platform: ruby
11
11
  authors:
12
- - Joon Lee
12
+ - Joon Lee, aka seouri
13
13
  autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-08-26 00:00:00 -04:00
17
+ date: 2010-08-30 00:00:00 -04:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -40,11 +40,10 @@ dependencies:
40
40
  - 3
41
41
  - 0
42
42
  - 0
43
- - rc2
44
- version: 3.0.0.rc2
43
+ version: 3.0.0
45
44
  type: :runtime
46
45
  version_requirements: *id002
47
- description: This gem only provides API for NCBI Eutils. If you need full access to other NCBI databases, try BioRuby (bio gem) instead.
46
+ description: Lightweight Ruby API for NCBI Eutils. This gem only provides API for NCBI Eutils. If you need full access to other NCBI databases, try BioRuby (bio gem) instead.
48
47
  email: seouri@gmail.com
49
48
  executables: []
50
49