Skip to content

Instantly share code, notes, and snippets.

@tkuchiki
Last active December 29, 2015 10:39
Show Gist options
  • Save tkuchiki/7658212 to your computer and use it in GitHub Desktop.
Save tkuchiki/7658212 to your computer and use it in GitHub Desktop.
gem 作成手順
# gem install bundle --no-ri --no-rdoc
$ bundle gem capistrano-shell
create capistrano-shell/Gemfile
create capistrano-shell/Rakefile
create capistrano-shell/LICENSE.txt
create capistrano-shell/README.md
create capistrano-shell/.gitignore
create capistrano-shell/capistrano-shell.gemspec
create capistrano-shell/lib/capistrano/shell.rb
create capistrano-shell/lib/capistrano/shell/version.rb
Initializating git repo in /path/to/capistrano-shell
$ cd capistrano-shell
# edit capistrano-shell.gemspec
## spec.description = %q{TODO: Write a gem description}
## spec.summary = %q{TODO: Write a gem summary}
$ git add .
$ git commit -m "Initial commit"
$ git remote add origin [email protected]:tkuchiki/capistrano-shell.git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment