Skip to content
This repository was archived by the owner on Dec 4, 2021. It is now read-only.

Commit 35c9110

Browse files
committed
fix testing and rails versions
1 parent 4142bfe commit 35c9110

File tree

5 files changed

+17
-3
lines changed

5 files changed

+17
-3
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ test/version_tmp
1818
test/log/*.log
1919
tmp
2020
.DS_Store
21+
test/Gemfile_tests.lock

Diff for: Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ if ENV['CI']
7979
if 'java' == RUBY_PLATFORM
8080
RAILS_VERSIONS = ['3.0.11', '3.1.3']
8181
else
82-
RAILS_VERSIONS = ['3.0.11', '3.1.3', '3.2.3']
82+
RAILS_VERSIONS = ['3.0.11', '3.1.3', '3.2.5']
8383
end
8484
else
8585
RAILS_VERSIONS = IO.read('SUPPORTED_RAILS_VERSIONS').strip.split("\n")

Diff for: SUPPORTED_RAILS_VERSIONS

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@
1717
3.2.0
1818
3.2.1
1919
3.2.2
20-
3.2.3
20+
3.2.3
21+
3.2.5

Diff for: test/Gemfile_tests

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
source 'http://rubygems.org'
2+
3+
gem "jasmine", ">= 1.0.0"
4+
gem "rspec", ">= 2.8.0"
5+
gem "shoulda", ">= 2.0.0"
6+
gem "mocha", ">= 0.10.0"
7+
gem "cucumber", "~> 1.1.2"
8+
gem "capybara", "~> 1.1.2"
9+
gem "coffee-script", "~> 2.2.0"
10+
gem "uglifier", ">= 1.2.0"
11+
gem "therubyracer", ">= 0.9.9"

Diff for: test/test.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/bash
2-
rake vendor_test_gems && \
2+
BUNDLE_GEMFILE=test/Gemfile_tests bundle
3+
BUNDLE_GEMFILE=test/Gemfile_tests rake vendor_test_gems && \
34
rake test && \
45
rake cucumber:web && \
56
#rake jasmine:ci && \

0 commit comments

Comments
 (0)