Skip to content

Commit

Permalink
As of 8291dbe, bcdatabase doesn't depend on AS any more.
Browse files Browse the repository at this point in the history
Since ActiveSupport isn't ever loaded, it doesn't make sense to test with
various versions of it.
  • Loading branch information
rsutphin committed Jul 4, 2014
1 parent 9bf5427 commit fc45d98
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 23 deletions.
11 changes: 1 addition & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,12 @@
language: ruby

rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.2
- jruby-1.7

env:
- ACTIVESUPPORT_VERSION=3.0
- ACTIVESUPPORT_VERSION=3.1
- ACTIVESUPPORT_VERSION=3.2

matrix:
include:
- rvm: 1.8.7
env: ACTIVESUPPORT_VERSION=2.3

install:
- "bundle update"

Expand Down
13 changes: 0 additions & 13 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,6 @@ source "http://rubygems.org"

gemspec

# for testing against different major releases of ActiveSupport
if ENV['ACTIVESUPPORT_VERSION']
version = case ENV['ACTIVESUPPORT_VERSION']
when /2.3$/ then '~> 2.3.0'
when /3.0$/ then '~> 3.0.0'
when /3.1$/ then '~> 3.1.0'
when /3.2$/ then '~> 3.2.0'
else raise "Unsupported ActiveSupport version #{ENV['ACTIVESUPPORT_VERSION']}"
end

gem 'activesupport', version
end

group :development do
# For yard's markdown support
platforms :jruby do; gem 'maruku'; end
Expand Down

0 comments on commit fc45d98

Please sign in to comment.