forked from it-agile/codersdojo_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DEVELOP.txt
22 lines (18 loc) · 893 Bytes
/
DEVELOP.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
PREREQUISITE FOR DEVELOPING
===========================
To develop the codersdojo client, you need the bundler gem. This usually means you have to install it with
sudo gem install bundler
(sudo is needed on OSX with the ruby provided by Apple. In other cases - e.g. if you are on another platform or are using rvm you may omit sudo if you wish to install the gem just for the current user.)
After installing the bundler gem call
bundle install
to install all needed gems
COMMON TASKS WHEN DEVELOPING
============================
Create a new gem of the codersdojo client and install it just locally
gem build codersdojo.gemspec &&
sudo gem install codersdojo-*.gem &&
mv -f codersdojo-*.gem deploy/
Create a new gem of the codersdojo client push it to RubyGems.org
build_gem.sh
Install the latest codersdojo client from RubyGems.org
sudo gem install codersdojo