Skip to content

fix call to method in list difference builder #9

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

Merged
merged 1 commit into from
Jun 29, 2015
Merged
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
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
0.0.16 / 2015-06-29
========
* Fix bug with ListDifferenceBuilder route_to method
* Add CHANGELOG.md

0.0.15 / 2015-06-26
========
* include Locator Module properly
* Fix bug with unwrap links

0.0.14 / 2015-06-26
========
* Add builder dir
* Add ListDifferenceBuilder and OrderedListDifference Builder
* Add deprecation mechanisms for ListDifferenceBuilder
* Add services/locator.rb
* Refactor mappers/base.rb
2 changes: 1 addition & 1 deletion lib/xing/builders/list_difference_builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def set_locator(data)
end

def locator_for(data)
Xing::Services::Locator.route_to(data[:links][:self])[:id].to_i
route_to(data[:links][:self])[:id].to_i
end

def map_items
Expand Down
2 changes: 1 addition & 1 deletion xing-backend.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |spec|
spec.name = "xing-backend"
spec.version = "0.0.15"
spec.version = "0.0.16"
author_list = {
"Evan Dorn" => 'evan@lrdesign.com',
"Patricia Ho" => 'patricia@lrdesign.com',
Expand Down