Navigation Menu

Skip to content

Commit

Permalink
Minor tweaks to gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyevans committed Jun 30, 2017
1 parent d96c51d commit c5a6d04
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sequel_pg.gemspec
@@ -1,6 +1,5 @@
version_integer = File.readlines('ext/sequel_pg/sequel_pg.c').first.split.last.to_i
raise "invalid version" unless version_integer >= 10617
version = "#{version_integer/10000}.#{(version_integer%10000)/100}.#{version_integer%100}"

SEQUEL_PG_GEMSPEC = Gem::Specification.new do |s|
s.name = 'sequel_pg'
Expand All @@ -22,7 +21,7 @@ SEQUEL_PG_GEMSPEC = Gem::Specification.new do |s|
s.description = <<END
sequel_pg overwrites the inner loop of the Sequel postgres
adapter row fetching code with a C version. The C version
is significantly faster (2-6x) than the pure ruby version
is significantly faster than the pure ruby version
that Sequel uses by default.
sequel_pg also offers optimized versions of some dataset
Expand Down

0 comments on commit c5a6d04

Please sign in to comment.