Last active
December 29, 2015 10:39
-
-
Save tkuchiki/7658212 to your computer and use it in GitHub Desktop.
gem 作成手順
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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