trackless_triggers 0.1.1 → 0.2.0
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 +5 -3
- data/VERSION +1 -1
- data/trackless_triggers.gemspec +42 -0
- metadata +2 -1
data/README
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
=
|
|
1
|
+
= Trackless Triggers
|
|
2
2
|
|
|
3
|
-
Add triggers to your active record migrations.
|
|
3
|
+
Add triggers and functions to your active record migrations. Based on Trigger Happy (http://tenderlovemaking.com/2007/03/01/trigger-happy.html)
|
|
4
4
|
|
|
5
5
|
== INSTALL
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Add this to your Gemfile:
|
|
8
|
+
|
|
9
|
+
gem 'trackless_triggers'
|
|
8
10
|
|
|
9
11
|
== EXAMPLE
|
|
10
12
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.2.0
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = "trackless_triggers"
|
|
8
|
+
s.version = "0.2.0"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Aaron Patterson", "Christian Eager", "Alexander Presber"]
|
|
12
|
+
s.date = "2013-03-05"
|
|
13
|
+
s.description = "Adds support for MySQL triggers in ActiveRecord"
|
|
14
|
+
s.email = "apresber@jovoto.com"
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"README"
|
|
17
|
+
]
|
|
18
|
+
s.files = [
|
|
19
|
+
"CHANGELOG",
|
|
20
|
+
"MIT-LICENSE",
|
|
21
|
+
"README",
|
|
22
|
+
"Rakefile",
|
|
23
|
+
"VERSION",
|
|
24
|
+
"init.rb",
|
|
25
|
+
"lib/trackless_triggers.rb",
|
|
26
|
+
"trackless_triggers.gemspec"
|
|
27
|
+
]
|
|
28
|
+
s.homepage = "https://github.com/jovoto-team/trackless_triggers"
|
|
29
|
+
s.require_paths = ["lib"]
|
|
30
|
+
s.rubygems_version = "1.8.25"
|
|
31
|
+
s.summary = "Adds support for MySQL triggers in ActiveRecord"
|
|
32
|
+
|
|
33
|
+
if s.respond_to? :specification_version then
|
|
34
|
+
s.specification_version = 3
|
|
35
|
+
|
|
36
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
37
|
+
else
|
|
38
|
+
end
|
|
39
|
+
else
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: trackless_triggers
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -27,6 +27,7 @@ files:
|
|
|
27
27
|
- VERSION
|
|
28
28
|
- init.rb
|
|
29
29
|
- lib/trackless_triggers.rb
|
|
30
|
+
- trackless_triggers.gemspec
|
|
30
31
|
homepage: https://github.com/jovoto-team/trackless_triggers
|
|
31
32
|
licenses: []
|
|
32
33
|
post_install_message:
|