lib/ronin/license.rb in ronin-0.1.1 vs lib/ronin/license.rb in ronin-0.1.2
- old
+ new
@@ -64,12 +64,14 @@
name = name.to_s
description = options[:description].to_s
url = options[:url].to_s
meta_def(name.to_method_name) do
- License.first_or_create(:name => name,
- :description => description,
- :url => url)
+ License.first_or_create(
+ :name => name,
+ :description => description,
+ :url => url
+ )
end
return nil
end