-
Notifications
You must be signed in to change notification settings - Fork 86
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 #116 from progit/ebook-pub
Ebook pub
- Loading branch information
Showing
489 changed files
with
1,092 additions
and
774 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 |
---|---|---|
|
@@ -10,5 +10,5 @@ progit.pdfmarks | |
progit.epub | ||
progit-kf8.epub | ||
progit.mobi | ||
/images/ | ||
|
||
/bin/ |
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,34 @@ | ||
language: ruby | ||
sudo: false | ||
git: | ||
depth: false | ||
cache: bundler | ||
before_install: | ||
- wget https://raw.githubusercontent.com/progit/progit2-pub/master/bootstrap.sh | ||
- sh bootstrap.sh | ||
script: bundle exec rake book:build | ||
after_success: bundle exec rake book:tag | ||
deploy: | ||
provider: releases | ||
file_glob: true | ||
file: | ||
- progit*.epub | ||
- progit*.mobi | ||
- progit*.pdf | ||
skip_cleanup: true | ||
on: | ||
tags: true | ||
api-key: $GITHUB_API_TOKEN | ||
branches: | ||
only: | ||
- master | ||
- /^2\.1(\.\d+)+$/ | ||
|
||
addons: | ||
apt: | ||
packages: | ||
- epubcheck | ||
notifications: | ||
email: | ||
on_success: never | ||
on_failure: always |
14 changes: 8 additions & 6 deletions
14
...environments/1-git-other-environments.asc → A-git-in-other-environments.asc
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
9 changes: 5 additions & 4 deletions
9
book/B-embedding-git/1-embedding-git.asc → B-embedding-git.asc
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,13 +1,14 @@ | ||
[#B-embedding-git] | ||
[appendix] | ||
== Integrando Git en tus Aplicaciones | ||
|
||
Si tu aplicación es para desarrolladores, es muy probable que pueda beneficiarse de la integración con el control de código fuente. | ||
Si tu aplicación es para desarrolladores, es muy probable que pueda beneficiarse de la integración con el control de código fuente. | ||
Incluso las aplicaciones que no sean para desarrolladores, tales como editores de documentos, podrían beneficiarse de las características de control de versiones, y el modelo de Git funciona muy bien para muchos escenarios diferentes. | ||
|
||
Si necesitas integrar Git con tu aplicación, tienes básicamente tres opciones: generar un shell y usar la herramienta de línea de comandos de Git; Libgit2; y JGit. | ||
|
||
include::sections/command-line.asc[] | ||
include::book/B-embedding-git/sections/command-line.asc[] | ||
|
||
include::sections/libgit2.asc[] | ||
include::book/B-embedding-git/sections/libgit2.asc[] | ||
|
||
include::sections/jgit.asc[] | ||
include::book/B-embedding-git/sections/jgit.asc[] |
242 changes: 121 additions & 121 deletions
242
book/C-git-commands/1-git-commands.asc → C-git-commands.asc
Large diffs are not rendered by default.
Oops, something went wrong.
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,16 +1,21 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'rake' | ||
gem 'asciidoctor', '1.5.0' | ||
gem 'asciidoctor', '1.5.6.1' | ||
|
||
gem 'json' | ||
gem 'awesome_print' | ||
|
||
gem 'asciidoctor-epub3', '1.0.0.alpha.2' | ||
gem 'asciidoctor-pdf', '1.5.0.alpha.5' | ||
gem 'asciidoctor-epub3', :git => 'https://github.com/asciidoctor/asciidoctor-epub3' | ||
gem 'asciidoctor-pdf', '1.5.0.alpha.16' | ||
gem 'asciidoctor-pdf-cjk', '~> 0.1.3' | ||
gem 'asciidoctor-pdf-cjk-kai_gen_gothic', '~> 0.1.1' | ||
|
||
gem 'coderay' | ||
gem 'pygments.rb' | ||
gem 'thread_safe' | ||
gem 'epubcheck' | ||
gem 'kindlegen' | ||
|
||
gem 'octokit' | ||
gem 'github_changelog_generator', github: 'Furtif/github-changelog-generator' |
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,74 +1,139 @@ | ||
GIT | ||
remote: git://github.com/Furtif/github-changelog-generator.git | ||
revision: efa960ce1c189cd999753713fcfbfb6b7514ab45 | ||
specs: | ||
github_changelog_generator (1.14.3) | ||
activesupport | ||
faraday-http-cache | ||
multi_json | ||
octokit (~> 4.6) | ||
rainbow (>= 2.2.1) | ||
rake (>= 10.0) | ||
retriable (~> 3.0) | ||
|
||
GIT | ||
remote: https://github.com/asciidoctor/asciidoctor-epub3 | ||
revision: ba930925a1df617312f986c7599b5162473b716f | ||
specs: | ||
asciidoctor-epub3 (1.5.0.alpha.9.dev) | ||
asciidoctor (~> 1.5.0) | ||
gepub (~> 0.6.9.2) | ||
thread_safe (~> 0.3.6) | ||
|
||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
Ascii85 (1.0.2) | ||
Ascii85 (1.0.3) | ||
activesupport (5.1.5) | ||
concurrent-ruby (~> 1.0, >= 1.0.2) | ||
i18n (~> 0.7) | ||
minitest (~> 5.1) | ||
tzinfo (~> 1.1) | ||
addressable (2.5.2) | ||
public_suffix (>= 2.0.2, < 4.0) | ||
afm (0.2.2) | ||
asciidoctor (1.5.0) | ||
asciidoctor-epub3 (1.0.0.alpha.2) | ||
asciidoctor (>= 1.5.0, < 1.6.0) | ||
gepub (~> 0.6.9.2) | ||
thread_safe (~> 0.3.4) | ||
asciidoctor-pdf (1.5.0.alpha.5) | ||
asciidoctor (~> 1.5.0) | ||
prawn (= 1.2.1) | ||
prawn-svg (= 0.16.0) | ||
prawn-table (= 0.1.1) | ||
prawn-templates (= 0.0.3) | ||
asciidoctor (1.5.6.1) | ||
asciidoctor-pdf (1.5.0.alpha.16) | ||
asciidoctor (>= 1.5.0) | ||
prawn (>= 1.3.0, < 2.3.0) | ||
prawn-icon (= 1.3.0) | ||
prawn-svg (>= 0.21.0, < 0.28.0) | ||
prawn-table (= 0.2.2) | ||
prawn-templates (>= 0.0.3, <= 0.1.1) | ||
safe_yaml (~> 1.0.4) | ||
thread_safe (~> 0.3.6) | ||
treetop (= 1.5.3) | ||
awesome_print (1.2.0) | ||
coderay (1.1.0) | ||
asciidoctor-pdf-cjk (0.1.3) | ||
asciidoctor-pdf (~> 1.5.0.alpha.8) | ||
asciidoctor-pdf-cjk-kai_gen_gothic (0.1.1) | ||
asciidoctor-pdf-cjk (~> 0.1.2) | ||
awesome_print (1.8.0) | ||
coderay (1.1.2) | ||
concurrent-ruby (1.0.5) | ||
css_parser (1.6.0) | ||
addressable | ||
epubcheck (3.0.1) | ||
faraday (0.14.0) | ||
multipart-post (>= 1.2, < 3) | ||
faraday-http-cache (2.0.0) | ||
faraday (~> 0.8) | ||
gepub (0.6.9.2) | ||
nokogiri (~> 1.6.1) | ||
rubyzip (>= 1.1.1) | ||
hashery (2.1.1) | ||
json (1.8.1) | ||
kindlegen (2.9.4) | ||
mini_portile (0.6.0) | ||
nokogiri (1.6.3.1) | ||
mini_portile (= 0.6.0) | ||
pdf-core (0.2.5) | ||
pdf-reader (1.3.3) | ||
hashery (2.1.2) | ||
i18n (0.9.5) | ||
concurrent-ruby (~> 1.0) | ||
json (2.1.0) | ||
kindlegen (3.0.3) | ||
rake | ||
rubyzip | ||
mini_portile2 (2.1.0) | ||
minitest (5.11.3) | ||
multi_json (1.13.1) | ||
multipart-post (2.0.0) | ||
nokogiri (1.6.8.1) | ||
mini_portile2 (~> 2.1.0) | ||
octokit (4.8.0) | ||
sawyer (~> 0.8.0, >= 0.5.3) | ||
pdf-core (0.7.0) | ||
pdf-reader (2.1.0) | ||
Ascii85 (~> 1.0.0) | ||
afm (~> 0.2.0) | ||
afm (~> 0.2.1) | ||
hashery (~> 2.0) | ||
ruby-rc4 | ||
ttfunk | ||
polyglot (0.3.5) | ||
posix-spawn (0.3.9) | ||
prawn (1.2.1) | ||
pdf-core (~> 0.2.5) | ||
ttfunk (~> 1.2.0) | ||
prawn-svg (0.16.0) | ||
prawn (>= 0.8.4) | ||
prawn-table (0.1.1) | ||
prawn-templates (0.0.3) | ||
pdf-reader (~> 1.3) | ||
prawn (>= 0.15.0) | ||
pygments.rb (0.6.0) | ||
posix-spawn (~> 0.3.6) | ||
yajl-ruby (~> 1.1.0) | ||
rake (10.3.2) | ||
prawn (2.2.2) | ||
pdf-core (~> 0.7.0) | ||
ttfunk (~> 1.5) | ||
prawn-icon (1.3.0) | ||
prawn (>= 1.1.0, < 3.0.0) | ||
prawn-svg (0.27.1) | ||
css_parser (~> 1.3) | ||
prawn (>= 0.11.1, < 3) | ||
prawn-table (0.2.2) | ||
prawn (>= 1.3.0, < 3.0.0) | ||
prawn-templates (0.1.1) | ||
pdf-reader (~> 2.0) | ||
prawn (~> 2.2) | ||
public_suffix (3.0.2) | ||
pygments.rb (1.2.1) | ||
multi_json (>= 1.0.0) | ||
rainbow (3.0.0) | ||
rake (12.3.0) | ||
retriable (3.1.1) | ||
ruby-rc4 (0.1.5) | ||
rubyzip (1.1.6) | ||
thread_safe (0.3.4) | ||
rubyzip (1.2.1) | ||
safe_yaml (1.0.4) | ||
sawyer (0.8.1) | ||
addressable (>= 2.3.5, < 2.6) | ||
faraday (~> 0.8, < 1.0) | ||
thread_safe (0.3.6) | ||
treetop (1.5.3) | ||
polyglot (~> 0.3) | ||
ttfunk (1.2.2) | ||
yajl-ruby (1.1.0) | ||
ttfunk (1.5.1) | ||
tzinfo (1.2.5) | ||
thread_safe (~> 0.1) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
asciidoctor (= 1.5.0) | ||
asciidoctor-epub3 (= 1.0.0.alpha.2) | ||
asciidoctor-pdf (= 1.5.0.alpha.5) | ||
asciidoctor (= 1.5.6.1) | ||
asciidoctor-epub3! | ||
asciidoctor-pdf (= 1.5.0.alpha.16) | ||
asciidoctor-pdf-cjk (~> 0.1.3) | ||
asciidoctor-pdf-cjk-kai_gen_gothic (~> 0.1.1) | ||
awesome_print | ||
coderay | ||
epubcheck | ||
github_changelog_generator! | ||
json | ||
kindlegen | ||
octokit | ||
pygments.rb | ||
rake | ||
thread_safe | ||
|
||
BUNDLED WITH | ||
1.16.1 |
Oops, something went wrong.