Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop old versions #327

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 0 additions & 34 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ before_script:
- mysql -e 'create database acts_as_list;'
- psql -c 'create database acts_as_list;' -U postgres
rvm:
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.6
- 2.3.6
- 2.4.3
- 2.5.0
Expand All @@ -22,37 +18,7 @@ env:
- DB=mysql
- DB=postgresql
gemfile:
- gemfiles/rails_3_2.gemfile
- gemfiles/rails_4_1.gemfile
- gemfiles/rails_4_2.gemfile
- gemfiles/rails_5_0.gemfile
- gemfiles/rails_5_1.gemfile
- gemfiles/rails_5_2.gemfile
matrix:
exclude:
- rvm: 1.9.3
gemfile: gemfiles/rails_5_0.gemfile
- rvm: 1.9.3
gemfile: gemfiles/rails_5_1.gemfile
- rvm: 1.9.3
gemfile: gemfiles/rails_5_2.gemfile
- rvm: 2.0.0
gemfile: gemfiles/rails_5_0.gemfile
- rvm: 2.0.0
gemfile: gemfiles/rails_5_1.gemfile
- rvm: 2.0.0
gemfile: gemfiles/rails_5_2.gemfile
- rvm: 2.1.10
gemfile: gemfiles/rails_5_0.gemfile
- rvm: 2.1.10
gemfile: gemfiles/rails_5_1.gemfile
- rvm: 2.1.10
gemfile: gemfiles/rails_5_2.gemfile
- rvm: 2.4.3
gemfile: gemfiles/rails_3_2.gemfile
- rvm: 2.4.3
gemfile: gemfiles/rails_4_1.gemfile
- rvm: 2.5.0
gemfile: gemfiles/rails_3_2.gemfile
- rvm: 2.5.0
gemfile: gemfiles/rails_4_1.gemfile
20 changes: 0 additions & 20 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,23 +1,3 @@
appraise "rails-3-2" do
group :mysql do
gem "mysql2", "~> 0.3.21", platforms: [:ruby]
end
gem "activerecord", "~> 3.2.22.2"
group :test do
gem "after_commit_exception_notification"
end
end

appraise "rails-4-1" do
group :mysql do
gem "mysql2", "~> 0.3.21", platforms: [:ruby]
end
gem "activerecord", "~> 4.1.16"
group :test do
gem "after_commit_exception_notification"
end
end

appraise "rails-4-2" do
group :mysql do
gem "mysql2", "~> 0.4.10", platforms: [:ruby]
Expand Down
2 changes: 0 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
source "http://rubygems.org"

gem "rack", "~> 1", platforms: [:ruby_19, :ruby_20, :ruby_21]

gemspec

gem "rake"
Expand Down
4 changes: 2 additions & 2 deletions acts_as_list.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |s|
s.description = 'This "acts_as" extension provides the capabilities for sorting and reordering a number of objects in a list. The class that has this specified needs to have a "position" column defined as an integer on the mapped database table.'
s.license = "MIT"
s.rubyforge_project = "acts_as_list"
s.required_ruby_version = ">= 1.9.2"
s.required_ruby_version = ">= 2.3.0"

# Load Paths...
s.files = `git ls-files`.split("\n")
Expand All @@ -24,6 +24,6 @@ Gem::Specification.new do |s|


# Dependencies (installed via "bundle install")
s.add_dependency "activerecord", ">= 3.0"
s.add_dependency "activerecord", ">= 4.2"
s.add_development_dependency "bundler", ">= 1.0.0"
end
34 changes: 0 additions & 34 deletions gemfiles/rails_3_2.gemfile

This file was deleted.

34 changes: 0 additions & 34 deletions gemfiles/rails_4_1.gemfile

This file was deleted.

1 change: 0 additions & 1 deletion gemfiles/rails_4_2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

source "http://rubygems.org"

gem "rack", "~> 1", platforms: [:ruby_19, :ruby_20, :ruby_21]
gem "rake"
gem "appraisal"
gem "activerecord", "~> 4.2.10"
Expand Down
1 change: 0 additions & 1 deletion gemfiles/rails_5_0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

source "http://rubygems.org"

gem "rack", "~> 1", platforms: [:ruby_19, :ruby_20, :ruby_21]
gem "rake"
gem "appraisal"
gem "activerecord", "~> 5.0.6"
Expand Down
1 change: 0 additions & 1 deletion gemfiles/rails_5_1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

source "http://rubygems.org"

gem "rack", "~> 1", platforms: [:ruby_19, :ruby_20, :ruby_21]
gem "rake"
gem "appraisal"
gem "activerecord", "~> 5.1.4"
Expand Down
1 change: 0 additions & 1 deletion gemfiles/rails_5_2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

source "http://rubygems.org"

gem "rack", "~> 1", platforms: [:ruby_19, :ruby_20, :ruby_21]
gem "rake"
gem "appraisal"
gem "activerecord", "~> 5.2.0.rc1"
Expand Down