README.md in closure_tree-3.6.3 vs README.md in closure_tree-3.6.4
- old
+ new
@@ -58,11 +58,11 @@
Note that if the column is null, the tag will be considered a root node.
5. Add a database migration to store the hierarchy for your model. By
default the table name will be the model's table name, followed by
- "_hierarchies". Note that by calling ```acts_as_tree```, a "virtual model" (in this case, ```TagsHierarchy```)
+ "_hierarchies". Note that by calling ```acts_as_tree```, a "virtual model" (in this case, ```TagHierarchy```)
will be added automatically, so you don't need to create it.
```ruby
class CreateTagHierarchies < ActiveRecord::Migration
def change
@@ -359,20 +359,24 @@
* The latest Rails 3.0, 3.1, and 3.2 branches, and
* MySQL, PostgreSQL, & SQLite.
## Change log
+### 3.6.4
+* Use ```.pluck``` when available for ```.ids_from```. Addresses [issue 26](https://github
+.com/mceachen/closure_tree/issues/26). Thanks, [Chris Sturgill](https://github.com/sturgill)!
+
### 3.6.3
* Fixed [issue 24](https://github.com/mceachen/closure_tree/issues/24), which optimized ```#hash_tree```
for roots. Thanks, [Saverio Trioni](https://github.com/rewritten)!
### 3.6.2
* Fixed [issue 23](https://github.com/mceachen/closure_tree/issues/23), which added support for ```#siblings```
- when sort_order wasn't specified. Thanks, [garygreyling](https://github.com/garygreyling)!
+ when sort_order wasn't specified. Thanks, [Gary Greyling](https://github.com/garygreyling)!
### 3.6.1
* Fixed [issue 20](https://github.com/mceachen/closure_tree/issues/20), which affected
deterministic ordering when siblings where different STI classes. Thanks, [edwinramirez](https://github.com/edwinramirez)!
@@ -471,5 +475,7 @@
## Thanks to
* https://github.com/collectiveidea/awesome_nested_set
* https://github.com/patshaughnessy/class_factory
+* JetBrains, which provides an [open-source license](http://www.jetbrains.com/ruby/buy/buy.jsp#openSource) to
+ [RubyMine](http://www.jetbrains.com/ruby/features/) for the development of this project.