Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
Add whatsnew generation as a rake task
Browse files Browse the repository at this point in the history
Add win platform to the Gemfile.lock
  • Loading branch information
dshevtsov committed Jun 17, 2019
1 parent cac6d6a commit b22edd3
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

_config.local.yml
.jekyll-metadata
.whatsup.yml

*.bat
/tmp/
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ source 'https://rubygems.org'

gem 'devdocs', git: 'https://github.com/magento-devdocs/devdocs-theme.git'
gem 'jekyll'
gem 'whatsup_github'

gem 'wdm', platform: :mswin

Expand Down
17 changes: 17 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ GEM
ffi (>= 1.3.0)
eventmachine (1.2.7)
exifr (1.3.6)
faraday (0.15.4)
multipart-post (>= 1.2, < 3)
ffi (1.10.0)
filesize (0.2.0)
forwardable-extended (2.6.0)
Expand Down Expand Up @@ -107,8 +109,12 @@ GEM
mercenary (0.3.6)
mini_portile2 (2.3.0)
minitest (5.11.3)
multipart-post (2.1.1)
netrc (0.11.0)
nokogiri (1.8.5)
mini_portile2 (~> 2.3.0)
octokit (4.14.0)
sawyer (~> 0.8.0, >= 0.5.3)
parallel (1.17.0)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
Expand All @@ -126,16 +132,26 @@ GEM
sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
sawyer (0.8.2)
addressable (>= 2.3.5)
faraday (> 0.8, < 2.0)
thor (0.20.3)
thread_safe (0.3.6)
typhoeus (1.3.1)
ethon (>= 0.9.0)
tzinfo (1.2.5)
thread_safe (~> 0.1)
verbal_expressions (0.1.5)
wdm (0.1.1)
whatsup_github (0.0.1)
netrc (~> 0.10)
octokit (~> 4.14)
thor (~> 0.20)
yell (2.1.0)

PLATFORMS
ruby
x86-mswin32

DEPENDENCIES
devdocs!
Expand All @@ -151,6 +167,7 @@ DEPENDENCIES
jekyll-titles-from-headings
launchy
wdm
whatsup_github

BUNDLED WITH
1.17.3
6 changes: 6 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,9 @@ task init: %w[multirepo:init]

desc 'Run checks (image optimization).'
task check: %w[check:image_optim]

desc 'Generate data for the weekly digest.'
task :whatsnew do
print 'Generating data for the weekly digest: $ '.magenta
sh 'whatsup_github'
end

0 comments on commit b22edd3

Please sign in to comment.