rails_appengine 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile
CHANGED
@@ -3,13 +3,13 @@ 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.5'
|
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
|
-
"for Rails 2.3.5
|
12
|
+
"for Rails 2.3.5, 2.3.8 and 2.3.9 on Google App Engine."
|
13
13
|
s.authors = ["Takeru Sasaki", "Josh S Moore", "John Woodell"]
|
14
14
|
s.email = ["sasaki.takeru@gmail.com", "joshsmoore@gmail.com",
|
15
15
|
"woodie@netpress.com"]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
base = nil
|
2
2
|
pre = File.dirname(__FILE__).split('/')[0..-4].join('/') + "/actionmailer-2.3"
|
3
|
-
5.upto(
|
3
|
+
5.upto(9) { |v| base = "#{pre}.#{v}" if File.exist?("#{pre}.#{v}") }
|
4
4
|
am = "#{base}/lib/action_mailer/vendor"
|
5
5
|
tmail_ver = base[-5..-1].eql?('2.3.5') ? 'tmail-1.2.3' : 'tmail-1.2.7'
|
6
6
|
$LOAD_PATH.unshift "#{am}/#{tmail_ver}"
|
@@ -1,11 +1,12 @@
|
|
1
1
|
base = nil
|
2
2
|
pre = File.dirname(__FILE__).split('/')[0..-4].join('/') + "/activesupport-2.3"
|
3
|
-
5.upto(
|
3
|
+
5.upto(9) { |v| base = "#{pre}.#{v}" if File.exist?("#{pre}.#{v}") }
|
4
4
|
as = "#{base}/lib/active_support/vendor"
|
5
|
-
|
5
|
+
iv = {'2.3.5' => '0.1.3/lib', '2.3.8' => '0.3.7', '2.3.9' => '0.4.1'}
|
6
|
+
i18n_ver = iv[base[-5..-1]]
|
6
7
|
$LOAD_PATH.unshift "#{as}/builder-2.1.2"
|
7
8
|
$LOAD_PATH.unshift "#{as}/memcache-client-1.7.4"
|
8
9
|
$LOAD_PATH.unshift "#{as}/tzinfo-0.3.12"
|
9
|
-
$LOAD_PATH.unshift "#{as}
|
10
|
+
$LOAD_PATH.unshift "#{as}/i18n-#{i18n_ver}"
|
10
11
|
require 'builder'
|
11
12
|
require 'i18n'
|
data/lib/rails_appengine.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 5
|
9
|
+
version: 0.0.5
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Takeru Sasaki
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2010-
|
19
|
+
date: 2010-09-05 00:00:00 -07:00
|
20
20
|
default_executable:
|
21
21
|
dependencies: []
|
22
22
|
|
@@ -71,6 +71,6 @@ rubyforge_project:
|
|
71
71
|
rubygems_version: 1.3.6
|
72
72
|
signing_key:
|
73
73
|
specification_version: 3
|
74
|
-
summary: We intend to provide a common set of config files for Rails 2.3.5
|
74
|
+
summary: We intend to provide a common set of config files for Rails 2.3.5, 2.3.8 and 2.3.9 on Google App Engine.
|
75
75
|
test_files: []
|
76
76
|
|