This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :ycpages do | |
desc "Update person gender using RapLeaf's name to gender API." | |
task :update_gender => :environment do | |
Person.all.each do |person| | |
unless person.gender.present? | |
url = "http://api.rapleaf.com/v4/util/name_to_gender/#{person.name.split.first}" | |
response = Net::HTTP.get_response(URI.parse(url)) | |
result = JSON.parse(response.body) | |
if ((result["status"] == "OK") && (result["answer"]["likelihood"].to_f > 0.9)) | |
person.update_attribute(:gender, result["answer"]["gender"]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo off | |
REM cd into your rails app folder | |
cd e:\webapps\projects | |
REM Then Call the rake task | |
call rake trant:send_notification |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :trant do | |
desc "Send email notifications for a project." | |
task :send_notification => :environment do | |
Project.send_notification | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
=skin= | |
@name Simpliquity | |
@author Yatrik Solanki | |
@homepage http://www.yatriksolanki.com | |
@email [email protected] | |
@license MPL/LGPL/GPL |
NewerOlder