Skip to content

Instantly share code, notes, and snippets.

View ginkouno's full-sized avatar

ginkouno ginkouno

  • Japan
View GitHub Profile
@ginkouno
ginkouno / Gemfile
Created July 30, 2018 05:32
Gemfile for new rails project
source "https://rubygems.org"
gem "rails"
@ginkouno
ginkouno / Gemfile
Created July 30, 2018 05:32
Gemfile for new rails project
source "https://rubygems.org"
gem "rails"
@ginkouno
ginkouno / summary_no_border.css
Created October 18, 2017 08:19
style sheet setting for .md summary with no border
<style>summary:focus {outline:0;}</style>
require 'google/apis/sheets_v4'
require 'google-drive-ruby'
client_id = 'YOUR_CLIENT_ID'
client_secret = 'YOUR_CLIENT_SECRET'
refresh_token = 'YOUR_REFRESH_TOKEN'
credentials = Google::Auth::UserRefreshCredentials.new(
client_id: client_id,
client_secret: client_secret,
@ginkouno
ginkouno / Gemfile
Last active August 29, 2015 13:58
poi server(?)をdaemonとして起動する
source "https://rubygems.org"
gem "jruby-poi", github: "kameeoze/jruby-poi", require: "poi"
gem "spoon_daemon"
gem "pry"
gem "bundler", require: ['drb/drb', 'stringio']