forked from bitcoin-dot-org/Bitcoin.org
-
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 bitcoin-dot-org#823: Various Backend & Site Docs Updates
- Loading branch information
Showing
10 changed files
with
222 additions
and
83 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 |
---|---|---|
|
@@ -2,4 +2,4 @@ language: ruby | |
rvm: | ||
- "2.0.0" | ||
|
||
script: make all | ||
script: make travis |
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,15 +1,32 @@ | ||
source 'https://rubygems.org' | ||
|
||
#ruby '2.0.0' | ||
## If you update the version here, also update it in .travis.yml and | ||
## README.md. Then push your branch and make sure Travis supports that | ||
## version. Then remind one of the site maintainers that they need to | ||
## run `rvm install <VERSION>` on the build server(s) before they commit | ||
## to master | ||
ruby '2.0.0' | ||
|
||
## Used on the build server. If you add a package here (like nokogiri) | ||
## that has non-Gem dependencies (like zlib), please remind the site | ||
## maintainers that they need to manually update the build server(s) | ||
## before they commit to master. If `bundle install` can satisfy all | ||
## your dependencies, then nothing extra needs to be done | ||
group :development do | ||
gem 'ffi-icu' | ||
gem 'jekyll' | ||
## When we upgrade to Jekyll 3.0.0 or higher, remove | ||
## _plugin/remove-html-extension.rb | ||
gem 'jekyll', '~>1.3.0' | ||
gem 'json' | ||
gem 'less' | ||
gem 'kramdown' | ||
gem 'RedCloth' | ||
gem 'therubyracer' # required by less | ||
gem 'html-proofer' | ||
end | ||
|
||
## Not used on build server. Only used by developers and Travis CI, so | ||
## you can put whatever you want here and bundler will tell us humans to | ||
## install the new Gems. | ||
group :slow_test do | ||
gem 'html-proofer' | ||
end |
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 |
---|---|---|
|
@@ -80,7 +80,7 @@ DEPENDENCIES | |
RedCloth | ||
ffi-icu | ||
html-proofer | ||
jekyll | ||
jekyll (~> 1.3.0) | ||
json | ||
kramdown | ||
less | ||
|
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
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
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
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
Oops, something went wrong.