forked from ringcentral/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from tripit/dev
Small Docs Updates
- Loading branch information
Showing
3 changed files
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
# Contributing to Slate | ||
|
||
Thanks for contributing to Slate! Please point your pull requests at the `dev` branch, and keep your commit messages clear and informative. Also, please make sure your contributions work in the most recent version of Chrome, Firefox, and IE. Thanks! | ||
Thanks for contributing to Slate! A couple of quick guidelines for submitting PRs: | ||
|
||
- Please point your pull requests at the `dev` branch, and keep your commit messages clear and informative. | ||
- Please make sure your contributions work in the most recent version of Chrome, Firefox, and IE. | ||
- If you're implementing a new feature, even if it's relatively small, it's nice to open an issue before you start so that others know what you're working on and can help make sure you're on the right track. | ||
|
||
Thanks again! Happy coding. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM ubuntu:trusty | ||
|
||
RUN apt-get update | ||
RUN apt-get install -yq ruby ruby-dev build-essential | ||
RUN gem install --no-ri --no-rdoc bundler | ||
ADD Gemfile /app/Gemfile | ||
ADD Gemfile.lock /app/Gemfile.lock | ||
RUN cd /app; bundle install | ||
ADD . /app | ||
EXPOSE 4567 | ||
WORKDIR /app | ||
CMD ["bundle", "exec", "middleman", "server"] |
This file contains 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