Skip to content

Instantly share code, notes, and snippets.

@rahulsom
rahulsom / ACEDrawingView.podspec
Last active August 29, 2015 14:01
ACEDrawingView Rahul's fork
Pod::Spec.new do |s|
s.name = 'ACEDrawingView'
s.version = '1.3.0'
s.license = { :type => 'Apache 2.0 License', :file => 'LICENSE.txt' }
s.summary = 'An open source iOS component to create a drawing app.'
s.homepage = 'https://github.com/rahulsom/ACEDrawingView'
s.author = { 'Stefano Acerbetti' => 'acerbetti@gmail.com' }
s.source = { :git => 'https://github.com/rahulsom/ACEDrawingView.git' }
s.platform = :ios, '4.0'
s.source_files = 'ACEDrawingView/*.{h,m}'
@rahulsom
rahulsom / MXLCalendarManager.podspec
Last active August 29, 2015 14:02
MXLCalendarManager As Pod
Pod::Spec.new do |s|
s.name = 'MXLCalendarManager'
s.version = '1.0.0'
s.license = { :type => 'MIT License', :file => 'LICENSE.txt' }
s.summary = 'A set of classes used to parse and handle iCalendar (.ICS) files'
s.homepage = 'https://github.com/rahulsom/MXLCalendarManager'
s.author = { 'Kiran Panesar' => 'Kiran@MobileXLabs.com' }
s.source = { :git => 'https://github.com/rahulsom/MXLCalendarManager.git'}
s.platform = :ios, '4.0'
s.source_files = 'MXLCalendarManager/*.{h,m}'
@rahulsom
rahulsom / EBPhotoPages.podspec
Last active August 29, 2015 14:02
EBPhotoPages
Pod::Spec.new do |s|
s.name = 'EBPhotoPages'
s.version = "0.9.3"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = "A photo gallery for iOS with a modern feature set. Similar features as the Facebook photo browser."
s.homepage = 'https://github.com/bjong-nliven/EBPhotoPages'
s.author = "Eddy Borja"
s.source = { :git => 'https://github.com/bjong-nliven/EBPhotoPages.git' }
s.platform = :ios, '7.0'
s.source_files = 'EBPhotoPagesController/*.{h,m}'
@rahulsom
rahulsom / JSONModel.podspec
Created September 5, 2014 15:48
Support for Extreme nesting and key mappers in JSONModel
Pod::Spec.new do |s|
s.name = "JSONModel"
s.version = "1.0.2"
s.summary = "Magical Data Modelling Framework for JSON. Create rapidly powerful, atomic and smart data model classes."
s.homepage = "http://www.jsonmodel.com"
s.license = { :type => 'MIT', :file => 'LICENSE_jsonmodel.txt' }
s.author = { "Marin Todorov" => "touch-code-magazine@underplot.com" }
s.source = { :git => "https://github.com/rahulsom/JSONModel.git" }
@rahulsom
rahulsom / keybase.md
Created September 30, 2014 04:02
keybase.md

Keybase proof

I hereby claim:

  • I am rahulsom on github.
  • I am rahulsom (https://keybase.io/rahulsom) on keybase.
  • I have a public key whose fingerprint is 901A 4B49 02BC AFF3 916D A7EF EF06 1F25 9237 B7B4

To claim this, I am signing this object:

@rahulsom
rahulsom / FirstPass.groovy
Last active August 29, 2015 14:08
CCD Analyzer
/*
* GPars (pronounced Jeepers) is a groovy library that offers multiple concurrency models - executors, parallel
* collections, actors, message passing, etc.
* So you can choose one depending on what you need.
*
* We just happen to use parallel collections
*/
@Grab("org.codehaus.gpars:gpars:1.2.1")
import groovyx.gpars.GParsPool
@rahulsom
rahulsom / MMPReactiveStompClient.podspec
Created February 28, 2015 00:02
Podspec for Reactive Sockets
Pod::Spec.new do |s|
s.name = "MMPReactiveStompClient"
s.version = "0.1.4"
s.summary = "A reactive WebSocket/STOMP client based on ReactiveCocoa"
s.description = <<-DESC
MMPReactiveStompClient is a reactive WebSocket/STOMP client library based on ReactiveCocoa and SocketRocket.
Features:
* Signal for raw WebSocket.
* Signal for STOMP frames, messages, and subscription.
@rahulsom
rahulsom / aliases.sh
Last active August 29, 2015 14:16
Get Sprint Notes from JIRA
alias releaseNotes="groovy https://gist.githubusercontent.com/rahulsom/a7da12c7956ab08fce4b/raw/release-notes.groovy"
alias sprintNotes="groovy https://gist.githubusercontent.com/rahulsom/a7da12c7956ab08fce4b/raw/sprint-notes.groovy"
@rahulsom
rahulsom / lgtm.coffee
Created April 12, 2015 03:35
Hubot lgtm script
# Description:
# When someone says LGTM, presents an image from LGTM.in
#
# Will ignore users set in HUBOT_LGTM_IGNORE_USERS (by default, none).
#
# Dependencies:
# None
#
# HUBOT_LGTM_IGNORE_USERS (optional, format: "user1|user2", default "lgtm|jira")
#
@rahulsom
rahulsom / blueprint-generate.sh
Created June 13, 2011 18:03
Generate blueprint css anywhere
#!/bin/bash -e
#
# Generates Blueprint files from a blueprint-settings.yml
#
TAG_TO_USE="v1.0.1" # Master is often messy
EXEC_DIR=$(pwd)
echo "Will run in ${EXEC_DIR}"