This file contains hidden or 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
#!/usr/bin/perl -w | |
# We're strict | |
use strict; | |
# Get list of installed gems | |
my @gems = qx(gem list); | |
chomp(@gems); | |
# Create commands |
This file contains hidden or 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
require 'curb' | |
Facebooker.use_curl = true | |
class Facebooker::Service::CurlService < Facebooker::Service::BaseService | |
def post_form(url,params,multipart=false) | |
curl = Curl::Easy.new(url.to_s) do |c| | |
c.headers["Expect:"] = "" | |
c.multipart_form_post = multipart | |
c.timeout = Facebooker.timeout | |
end | |
curl.http_post(*to_curb_params(params)) |
This file contains hidden or 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
# | |
# Copyright (c) 2009 Ben Reubenstein <[email protected]> | |
# | |
# Description: | |
# This script is designed to auto increment PList CFBundleVersion versions. | |
# It supports incrementing version in a three part format: | |
# | |
# 100.99.3 | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy of |
NewerOlder