astrotrain 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/astrotrain.gemspec +2 -2
- data/lib/astrotrain.rb +3 -1
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.5.
|
1
|
+
0.5.2
|
data/astrotrain.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{astrotrain}
|
8
|
-
s.version = "0.5.
|
8
|
+
s.version = "0.5.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["technoweenie"]
|
12
|
-
s.date = %q{2010-
|
12
|
+
s.date = %q{2010-04-01}
|
13
13
|
s.email = %q{technoweenie@gmail.com}
|
14
14
|
s.extra_rdoc_files = [
|
15
15
|
"LICENSE",
|
data/lib/astrotrain.rb
CHANGED
@@ -9,8 +9,8 @@ module Astrotrain
|
|
9
9
|
def self.load(root = Dir.pwd)
|
10
10
|
self.root = File.expand_path(root)
|
11
11
|
self.lib_root = File.expand_path(File.dirname(__FILE__))
|
12
|
-
load_dependencies
|
13
12
|
yield if block_given?
|
13
|
+
load_dependencies
|
14
14
|
%w(tmail message mapping logged_mail mapping/transport mapping/http_post mapping/jabber).each do |lib|
|
15
15
|
require "astrotrain/#{lib}"
|
16
16
|
end
|
@@ -40,6 +40,8 @@ private
|
|
40
40
|
gem 'addressable', '2.0.2'
|
41
41
|
|
42
42
|
dm_ver = "0.9.11"
|
43
|
+
gem "data_objects", dm_ver
|
44
|
+
gem "do_mysql", dm_ver
|
43
45
|
gem "dm-core", dm_ver # The datamapper ORM
|
44
46
|
gem "dm-aggregates", dm_ver # Provides your DM models with count, sum, avg, min, max, etc.
|
45
47
|
gem "dm-timestamps", dm_ver # Automatically populate created_at, created_on, etc. when those properties are present.
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 5
|
8
|
-
-
|
9
|
-
version: 0.5.
|
8
|
+
- 2
|
9
|
+
version: 0.5.2
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- technoweenie
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-
|
17
|
+
date: 2010-04-01 00:00:00 -07:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|