pose 1.3.2 → 1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/pose/static_api.rb +1 -1
- data/lib/pose/version.rb +1 -1
- data/lib/tasks/pose_tasks.rake +1 -1
- metadata +1 -1
data/lib/pose/static_api.rb
CHANGED
data/lib/pose/version.rb
CHANGED
data/lib/tasks/pose_tasks.rake
CHANGED
@@ -20,7 +20,7 @@ namespace :pose do
|
|
20
20
|
|
21
21
|
desc "Removes the search index for all instances of the given classes."
|
22
22
|
task :remove, [:class_name] => :environment do |t, args|
|
23
|
-
clazz =
|
23
|
+
clazz = args.class_name.constantize
|
24
24
|
PoseAssignment.cleanup_class_index clazz
|
25
25
|
puts "Search index for class #{clazz.name} deleted.\n\n"
|
26
26
|
end
|