File tree Expand file tree Collapse file tree 8 files changed +10
-32
lines changed Expand file tree Collapse file tree 8 files changed +10
-32
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ cache: bundler
2
2
sudo : false
3
3
language : ruby
4
4
rvm :
5
- - 2.3.1
6
- - 2.2.5
5
+ - 2.4.0
6
+ - 2.3.3
7
+ - 2.2.6
7
8
# these haven't been passing for a while:
8
9
# - jruby-head
9
10
# - rbx
10
11
11
12
gemfile :
12
- - gemfiles/activerecord_4.1.gemfile
13
13
- gemfiles/activerecord_4.2.gemfile
14
14
- gemfiles/activerecord_5.0_foreigner.gemfile
15
15
- gemfiles/activerecord_5.0.gemfile
Original file line number Diff line number Diff line change 1
- appraise 'activerecord-4.1' do
2
- gem 'activerecord' , '~> 4.1.0'
3
- gem 'foreigner'
4
- platforms :ruby , :rbx do
5
- gem 'mysql2' , '~> 0.3.20'
6
- end
7
- end
8
1
9
2
appraise 'activerecord-4.2' do
10
3
gem 'activerecord' , '~> 4.2.0'
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ### 6.4.0
4
+
5
+ * Merged [ PR 236] ( https://github.com/mceachen/closure_tree/pull/236 ) which adds documentation for ` has_closure_tree_root ` .
6
+ * Added ruby 2.4 and dropped Rails 4.1 from the build matrix.
7
+
3
8
### 6.3.0
4
9
5
10
* ` prepend_child ` [ handles invalid children properly now] ( https://github.com/mceachen/closure_tree/issues/249 ) .
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ closure_tree has some great features:
27
27
* 2 SQL INSERTs on node creation
28
28
* 3 SQL INSERT/UPDATEs on node reparenting
29
29
* __ Support for [ concurrency] ( #concurrency ) __ (using [ with_advisory_lock] ( https://github.com/mceachen/with_advisory_lock ) )
30
- * __ Support for ActiveRecord 4.1, 4. 2 and 5.0__
30
+ * __ Support for ActiveRecord 4.2 and 5.0__
31
31
* __ Support for Ruby 2.2 and 2.3__
32
32
* Support for reparenting children (and all their descendants)
33
33
* Support for [ single-table inheritance (STI)] ( #sti ) within the hierarchy
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ source "https://rubygems.org"
5
5
gem "activerecord", "~> 4.2.0"
6
6
7
7
platforms :ruby, :rbx do
8
- gem "mysql2", "~> 0.3.20"
8
+ gem "mysql2"
9
9
gem "pg"
10
10
gem "sqlite3"
11
11
end
You can’t perform that action at this time.
0 commit comments