class RubyOnRailsJob
has_many :jobs
has_many :companies
has_many :developers
CREATED_AT = 3.years.ago
def business_model
if you_are_a_developer?
puts "It free"
else
{
post_a_job: "Free",
receive_applications: "Free",
recruitment_service: "18% of the annual salary"
}
end
end
def count_developers
1340
end
def job_alert_count
2200
end
def creators
puts "ELo & Jeanro = ❤️"
end
end