talentbox-sequel-rails 0.3.7 → 0.3.8

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- talentbox-sequel-rails (0.3.7)
4
+ talentbox-sequel-rails (0.3.8)
5
5
  railties (~> 3.2.0)
6
6
  sequel (~> 3.28)
7
7
 
data/History.md CHANGED
@@ -1,6 +1,15 @@
1
- 0.3.8 - dev
1
+ 0.3.9 - dev
2
2
  ===========
3
3
 
4
+ 0.3.8
5
+ =====
6
+
7
+ * Fix bug in `db:force_close_open_connections` and make it work with
8
+ PostgreSQL 9.2.
9
+ * Ensure `db:test:prepare` use `execute` instead of `invoke` so that tasks
10
+ already invoked are executed again. This make the following work as expected:
11
+ `rake db:create db:migrate db:test:prepare`
12
+
4
13
  0.3.7
5
14
  =====
6
15
 
@@ -142,13 +142,14 @@ namespace :db do
142
142
 
143
143
  desc 'Forcibly close any open connections to the test database'
144
144
  task :force_close_open_connections => :environment do
145
- if Rails.env.test?
145
+ if db_for_current_env.database_type==:postgres
146
146
  begin
147
- #Will only work on Postgres > 8.4
147
+ # Will only work on Postgres > 8.4
148
+ pid_column = db_for_current_env.server_version < 90200 ? "procpid" : "pid"
148
149
  db_for_current_env.execute <<-SQL.gsub(/^\s{9}/,'')
149
- SELECT COUNT(pg_terminate_backend(procpid))
150
+ SELECT COUNT(pg_terminate_backend(#{pid_column}))
150
151
  FROM pg_stat_activity
151
- WHERE datname = '#{db_config[:database]}';
152
+ WHERE datname = '#{db_for_current_env.opts[:database]}';
152
153
  SQL
153
154
  rescue => e
154
155
  #Will raise an error as it kills existing process running this command
@@ -160,10 +161,10 @@ namespace :db do
160
161
  namespace :test do
161
162
  task :prepare => "db:abort_if_pending_migrations" do
162
163
  Rails.env = 'test'
163
- Rake::Task['db:force_close_open_connections'].invoke
164
- Rake::Task['db:drop'].invoke
165
- Rake::Task['db:create'].invoke
166
- Rake::Task['db:schema:load'].invoke
164
+ Rake::Task['db:force_close_open_connections'].execute
165
+ Rake::Task['db:drop'].execute
166
+ Rake::Task['db:create'].execute
167
+ Rake::Task['db:schema:load'].execute
167
168
  Sequel::DATABASES.each do |db|
168
169
  db.disconnect
169
170
  end
@@ -1,5 +1,5 @@
1
1
  module Rails
2
2
  module Sequel
3
- VERSION = "0.3.7"
3
+ VERSION = "0.3.8"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: talentbox-sequel-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.7
4
+ version: 0.3.8
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -191,7 +191,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
191
191
  version: '0'
192
192
  segments:
193
193
  - 0
194
- hash: 1170649878632369574
194
+ hash: -412832233955601598
195
195
  required_rubygems_version: !ruby/object:Gem::Requirement
196
196
  none: false
197
197
  requirements:
@@ -200,7 +200,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
200
200
  version: '0'
201
201
  segments:
202
202
  - 0
203
- hash: 1170649878632369574
203
+ hash: -412832233955601598
204
204
  requirements: []
205
205
  rubyforge_project:
206
206
  rubygems_version: 1.8.24