hairtrigger 0.1.13 → 0.1.14

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/README.rdoc CHANGED
@@ -258,6 +258,7 @@ you want to support.
258
258
 
259
259
  == Version History
260
260
 
261
+ * 0.1.14 sqlite + ruby1.9 bugfix
261
262
  * 0.1.13 drop_trigger fix
262
263
  * 0.1.12 DB-specific trigger body support, bugfixes
263
264
  * 0.1.11 Safer migration loading, some speedups
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.13
1
+ 0.1.14
@@ -321,7 +321,7 @@ module HairTrigger
321
321
 
322
322
  def generate_trigger_sqlite
323
323
  <<-SQL
324
- CREATE TRIGGER #{prepared_name} #{options[:timing]} #{options[:events]} ON #{options[:table]}
324
+ CREATE TRIGGER #{prepared_name} #{options[:timing]} #{options[:events].first} ON #{options[:table]}
325
325
  FOR EACH #{options[:for_each]}#{prepared_where ? " WHEN " + prepared_where : ''}
326
326
  BEGIN
327
327
  #{normalize(raw_actions, 1).rstrip}
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hairtrigger
3
3
  version: !ruby/object:Gem::Version
4
- hash: 1
4
+ hash: 7
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 13
10
- version: 0.1.13
9
+ - 14
10
+ version: 0.1.14
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jon Jensen
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-01-16 00:00:00 -07:00
18
+ date: 2012-10-23 00:00:00 -06:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency