rails_appengine 0.0.3 → 0.0.4
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/Rakefile
CHANGED
@@ -3,15 +3,16 @@ require 'rake/gempackagetask'
|
|
3
3
|
|
4
4
|
spec = Gem::Specification.new do |s|
|
5
5
|
s.name = "rails_appengine"
|
6
|
-
s.version = '0.0.
|
6
|
+
s.version = '0.0.4'
|
7
7
|
s.platform = Gem::Platform::RUBY
|
8
8
|
s.has_rdoc = false
|
9
9
|
s.extra_rdoc_files = ["README.rdoc", "LICENSE"]
|
10
10
|
s.description = "Config files for Rails on App Engine"
|
11
11
|
s.summary = "We intend to provide a common set of config files " +
|
12
12
|
"for Rails 2.3.5 (and eventually 3.0) on Google App Engine."
|
13
|
-
s.authors = ["Takeru Sasaki", "John Woodell"]
|
14
|
-
s.email = ["sasaki.takeru@gmail.com", "
|
13
|
+
s.authors = ["Takeru Sasaki", "Josh S Moore", "John Woodell"]
|
14
|
+
s.email = ["sasaki.takeru@gmail.com", "joshsmoore@gmail.com",
|
15
|
+
"woodie@netpress.com"]
|
15
16
|
s.homepage = "http://github.com/takeru/rails_appengine"
|
16
17
|
s.require_path = 'lib'
|
17
18
|
s.files = %w(LICENSE README.rdoc Rakefile) + Dir.glob("lib/**/*")
|
data/lib/rails_appengine.rb
CHANGED
@@ -1,2 +1,6 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
base = nil
|
2
|
+
pre = File.dirname(__FILE__).split('/')[0..-4].join('/') + "/actionmailer-2.3"
|
3
|
+
5.upto(8) { |v| base = "#{pre}.#{v}" if File.exist?("#{pre}.#{v}") }
|
4
|
+
am = "#{base}/lib/action_mailer/vendor"
|
5
|
+
tmail_ver = base[-5..-1].eql?('2.3.5') ? 'tmail-1.2.3' : 'tmail-1.2.7'
|
6
|
+
$LOAD_PATH.unshift "#{am}/#{tmail_ver}"
|
@@ -1,7 +1,11 @@
|
|
1
|
-
|
1
|
+
base = nil
|
2
|
+
pre = File.dirname(__FILE__).split('/')[0..-4].join('/') + "/activesupport-2.3"
|
3
|
+
5.upto(8) { |v| base = "#{pre}.#{v}" if File.exist?("#{pre}.#{v}") }
|
4
|
+
as = "#{base}/lib/active_support/vendor"
|
5
|
+
i18n_ver = base[-5..-1].eql?('2.3.5') ? 'i18n-0.1.3/lib' : 'i18n-0.3.7'
|
2
6
|
$LOAD_PATH.unshift "#{as}/builder-2.1.2"
|
3
7
|
$LOAD_PATH.unshift "#{as}/memcache-client-1.7.4"
|
4
8
|
$LOAD_PATH.unshift "#{as}/tzinfo-0.3.12"
|
5
|
-
$LOAD_PATH.unshift "#{as}
|
9
|
+
$LOAD_PATH.unshift "#{as}/#{i18n_ver}"
|
6
10
|
require 'builder'
|
7
11
|
require 'i18n'
|
metadata
CHANGED
@@ -5,23 +5,25 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 4
|
9
|
+
version: 0.0.4
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Takeru Sasaki
|
13
|
+
- Josh S Moore
|
13
14
|
- John Woodell
|
14
15
|
autorequire:
|
15
16
|
bindir: bin
|
16
17
|
cert_chain: []
|
17
18
|
|
18
|
-
date: 2010-
|
19
|
+
date: 2010-06-23 00:00:00 -07:00
|
19
20
|
default_executable:
|
20
21
|
dependencies: []
|
21
22
|
|
22
23
|
description: Config files for Rails on App Engine
|
23
24
|
email:
|
24
25
|
- sasaki.takeru@gmail.com
|
26
|
+
- joshsmoore@gmail.com
|
25
27
|
- woodie@netpress.com
|
26
28
|
executables: []
|
27
29
|
|