trackless_triggers 0.2.0 → 0.2.1
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/CHANGELOG +8 -0
- data/Rakefile +6 -6
- data/VERSION +1 -1
- data/trackless_triggers.gemspec +3 -3
- metadata +3 -3
data/CHANGELOG
CHANGED
data/Rakefile
CHANGED
|
@@ -3,12 +3,12 @@ require 'rake'
|
|
|
3
3
|
begin
|
|
4
4
|
require 'jeweler'
|
|
5
5
|
Jeweler::Tasks.new do |gemspec|
|
|
6
|
-
gemspec.name
|
|
7
|
-
gemspec.summary
|
|
8
|
-
gemspec.description = "Adds support for MySQL triggers in ActiveRecord"
|
|
9
|
-
gemspec.email
|
|
10
|
-
gemspec.homepage
|
|
11
|
-
gemspec.authors
|
|
6
|
+
gemspec.name = "trackless_triggers"
|
|
7
|
+
gemspec.summary = "Adds support for MySQL triggers and functions in ActiveRecord"
|
|
8
|
+
gemspec.description = "Adds support for MySQL triggers and functions in ActiveRecord"
|
|
9
|
+
gemspec.email = "apresber@jovoto.com"
|
|
10
|
+
gemspec.homepage = "https://github.com/jovoto-team/trackless_triggers"
|
|
11
|
+
gemspec.authors = ["Aaron Patterson", "Christian Eager", 'Alexander Presber']
|
|
12
12
|
end
|
|
13
13
|
rescue LoadError
|
|
14
14
|
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.1
|
data/trackless_triggers.gemspec
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "trackless_triggers"
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Aaron Patterson", "Christian Eager", "Alexander Presber"]
|
|
12
12
|
s.date = "2013-03-05"
|
|
13
|
-
s.description = "Adds support for MySQL triggers in ActiveRecord"
|
|
13
|
+
s.description = "Adds support for MySQL triggers and functions in ActiveRecord"
|
|
14
14
|
s.email = "apresber@jovoto.com"
|
|
15
15
|
s.extra_rdoc_files = [
|
|
16
16
|
"README"
|
|
@@ -28,7 +28,7 @@ Gem::Specification.new do |s|
|
|
|
28
28
|
s.homepage = "https://github.com/jovoto-team/trackless_triggers"
|
|
29
29
|
s.require_paths = ["lib"]
|
|
30
30
|
s.rubygems_version = "1.8.25"
|
|
31
|
-
s.summary = "Adds support for MySQL triggers in ActiveRecord"
|
|
31
|
+
s.summary = "Adds support for MySQL triggers and functions in ActiveRecord"
|
|
32
32
|
|
|
33
33
|
if s.respond_to? :specification_version then
|
|
34
34
|
s.specification_version = 3
|
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.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -13,7 +13,7 @@ bindir: bin
|
|
|
13
13
|
cert_chain: []
|
|
14
14
|
date: 2013-03-05 00:00:00.000000000 Z
|
|
15
15
|
dependencies: []
|
|
16
|
-
description: Adds support for MySQL triggers in ActiveRecord
|
|
16
|
+
description: Adds support for MySQL triggers and functions in ActiveRecord
|
|
17
17
|
email: apresber@jovoto.com
|
|
18
18
|
executables: []
|
|
19
19
|
extensions: []
|
|
@@ -51,5 +51,5 @@ rubyforge_project:
|
|
|
51
51
|
rubygems_version: 1.8.25
|
|
52
52
|
signing_key:
|
|
53
53
|
specification_version: 3
|
|
54
|
-
summary: Adds support for MySQL triggers in ActiveRecord
|
|
54
|
+
summary: Adds support for MySQL triggers and functions in ActiveRecord
|
|
55
55
|
test_files: []
|