Shawn Patrick Rice
Shawn Patrick Rice
Okay. I made the name change. Things might break, although, at least between the Bash, PHP, and Ruby bundlers, as well as some other supporting scripts I had to change...
But, that means I might have totally borked the Python bundler. I'm assigning you to fix that @deanishe.
And mine has non-committed emoji support... I think you allocated your time better. :cry:
Surprisingly, read through loads of pages on unicode specs isn't that much fun.
The PHP bundler takes care of this by providing a simple method: ``` $b = new AlfredBundler; $cd = $b->wrapper( 'cocoadialog' ); ``` That method should just `require_once` the wrapper...
That makes sense. The latter is a decent way to go especially because importing the wrapper modules shouldn't take much time (they're small, ultimately). Btw, updated checklist at the top...
@Ritashugisha , @deanishe , are these implemented in the Python bundler?
Well, the only reason why it needs to be in the JSON is so that we don't have to write a function to compare version strings in every language (or...
I think I wrote one for PHP too... a while ago, but I can't remember what project it was for. Maybe I wrote it in Ruby. Or was it...? Well,...
Oh. It was Ruby: ``` def parse_semantic_version(version) version = version.chomp parts = version.split('.') major = parts[0] minor = parts[1] patch = parts[2][0] label = parts[2][2..-1] label = 'null' if label.nil?...