Doorkeeper の API
http://www.doorkeeperhq.com/developer/api
イベントを検索したりはできるみたい。
どうやってAPIをたたくか。
module Hoge | |
extend self | |
def hoge | |
'hoge' | |
end | |
end | |
Hoge.hoge # => hoge |
gem_group :development, :test do | |
gem 'rspec-rails', '~> 2.0' | |
gem 'pry-rails' | |
gem 'pry-byebug' | |
end | |
run_bundle | |
git :init | |
git add: '.' |
(:name review-mode | |
:type github | |
:pkgname "kmuto/review-el" | |
:after (progn | |
(require 'review-mode))) |
Doorkeeper の API
http://www.doorkeeperhq.com/developer/api
イベントを検索したりはできるみたい。
どうやってAPIをたたくか。
# attrs | |
# name | |
class User < ActiveRecord::Base | |
has_many :comments | |
end | |
# attrs | |
# user_id | |
# body | |
class Comment < ActiveRecord::Base |
source "https://rubygems.org" | |
gem 'delorean' | |
gem 'active_support' |
/* | |
* Adds the serialNumber property to the UIDevice class | |
* | |
* The implementation uses undocumented (for iOS) IOKit functions, | |
* so handle with caution and be prepared for nil. | |
*/ | |
#import <UIKit/UIDevice.h> | |
@interface UIDevice (serialNumber) |