Skip to content

Commit 05153d1

Browse files
committed
Update test environment
1 parent 89631f7 commit 05153d1

File tree

3 files changed

+51
-2
lines changed

3 files changed

+51
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/doc/
22
/pkg/
33
/tmp/
4-
.rbx
4+
.rbx/
55
.#*
66
.DS_Store
77
*.dSYM
@@ -13,3 +13,4 @@
1313
Makefile*
1414
mkmf.log
1515
/test/database.yml
16+
/Gemfile.lock

Gemfile

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# -----------------------------------------------------------------------------
2+
#
3+
# Gemfile used for CI testing.
4+
#
5+
# -----------------------------------------------------------------------------
6+
# Copyright 2012 Daniel Azuma
7+
#
8+
# All rights reserved.
9+
#
10+
# Redistribution and use in source and binary forms, with or without
11+
# modification, are permitted provided that the following conditions are met:
12+
#
13+
# * Redistributions of source code must retain the above copyright notice,
14+
# this list of conditions and the following disclaimer.
15+
# * Redistributions in binary form must reproduce the above copyright notice,
16+
# this list of conditions and the following disclaimer in the documentation
17+
# and/or other materials provided with the distribution.
18+
# * Neither the name of the copyright holder, nor the names of any other
19+
# contributors to this software, may be used to endorse or promote products
20+
# derived from this software without specific prior written permission.
21+
#
22+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
23+
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24+
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25+
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
26+
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27+
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28+
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29+
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30+
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31+
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32+
# POSSIBILITY OF SUCH DAMAGE.
33+
# -----------------------------------------------------------------------------
34+
;
35+
36+
37+
source "http://rubygems.org"
38+
39+
gem('rgeo-activerecord', '~> 0.4.5')
40+
gem('mysql2', '>= 0.2.13')
41+
#gem('activerecord', '~> 3.0.16')
42+
#gem('activerecord', '~> 3.1.7')
43+
gem('activerecord', '~> 3.2.7')
44+
45+
group(:test) do
46+
gem('rake', '>= 0.9.2')
47+
gem('rdoc', '>= 3.12')
48+
end

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,4 +218,4 @@ end
218218

219219
# Default task
220220

221-
task :default => [:clean, :build_rdoc, :build_gem, :test]
221+
task :default => [:clean, :test]

0 commit comments

Comments
 (0)