Ignore the changes of this file:
git update-index --assume-unchanged <file>
class MyCustomCell < UITableViewCell | |
# This method is used by ProMotion to instantiate cells. | |
def initWithStyle(style_name, reuseIdentifier: reuseIdentifier) | |
super | |
stylish | |
self | |
end | |
# A delegate method when the user clicks the Row(it's blue by default) |
file_cache_path "/tmp/chef-solo" | |
data_bag_path "/tmp/chef-solo/data_bags" | |
encrypted_data_bag_secret "/tmp/chef-solo/data_bag_key" | |
cookbook_path [ "/tmp/chef-solo/site-cookbooks", | |
"/tmp/chef-solo/cookbooks" ] | |
role_path "/tmp/chef-solo/roles" |
SchemaHelper.with_schema(:clients) do | |
begin | |
app_id = SchoolConfiguration.facebook_app_id | |
app_secret = SchoolConfiguration.facebook_secret | |
auther = Mogli::Authenticator.new(app_id, app_secret, "") | |
token = auther.get_access_token_for_application | |
client = Mogli::Client.new(token) | |
client.post(app_id, nil, :canvas_fluid_width => true, :access_token => token) | |
rescue | |
puts "Ignoring an exception..." |