Skip to content

Instantly share code, notes, and snippets.

View ikesyo's full-sized avatar
🏠
Working from home

IKEDA Sho ikesyo

🏠
Working from home
View GitHub Profile
@ikesyo
ikesyo / Mantle.podspec
Created October 3, 2013 15:18
Renaming version of Mantle.podspec
Pod::Spec.new do |s|
s.name = "Mantle"
s.version = "1.3"
s.summary = "Model framework for Cocoa and Cocoa Touch."
s.homepage = "https://github.com/github/Mantle"
s.license = 'MIT'
s.author = { "GitHub" => "support@github.com" }
s.source = { :git => "https://github.com/github/Mantle.git", :tag => "1.3" }
Pod::Spec.new do |s|
s.name = "ReactiveCocoa"
s.version = "2.0-RC1"
s.summary = "A framework for composing and transforming sequences of values."
s.homepage = "https://github.com/blog/1107-reactivecocoa-is-now-open-source"
s.author = { "Justin Spahr-Summers" => "jspahrsummers@github.com", "Josh Abernathy" => "josh@github.com" }
s.source = { :git => "https://github.com/ReactiveCocoa/ReactiveCocoa.git", :tag => "v#{s.version}" }
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.description = "ReactiveCocoa (RAC) is an Objective-C framework for Functional Reactive Programming. It provides APIs for composing and transforming streams of values."
@ikesyo
ikesyo / main.js
Last active December 15, 2015 09:59
Parse Cloud Code: Make role
// Use Parse.Cloud.define to define as many cloud functions as you want.
// For example:
Parse.Cloud.define("hello", function(request, response) {
var acl = new Parse.ACL();
var role = new Parse.Role("testRole", acl);
role.save();
response.success("Hello world!");
});
@ikesyo
ikesyo / DescriptionBuilder.podspec
Created July 30, 2012 07:39
DescriptionBuilder.podspec
Pod::Spec.new do |s|
s.name = 'DescriptionBuilder'
s.version = '0.1'
s.platform = :ios
s.summary = 'DescriptionBuilder is helper class to make easier implementing NSObject description method.
Or dump all instance variables of any object. '
s.homepage = 'https://github.com/kishikawakatsumi/DescriptionBuilder'
s.author = { 'KISHIKAWA Katsumi' => 'kishikawakatsumi@gmail.com' }
s.source = { :git => 'https://github.com/kishikawakatsumi/DescriptionBuilder.git', :branch => 'master' }