Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Gemfile4
-rw-r--r--Gemfile.lock32
-rw-r--r--Guardfile24
3 files changed, 7 insertions, 53 deletions
diff --git a/Gemfile b/Gemfile
index 2a78490d..bdefc681 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,14 +1,12 @@
source 'https://rubygems.org'
gem 'nanoc', '~> 4.12.0'
-gem 'adsf', '~> 1.4.5'
-gem 'adsf-live', '~> 1.4.5'
gem 'sassc', '~> 2.4.0'
gem 'rouge', '~> 3.26.0'
gem 'rake', '~> 13.0.3'
group :nanoc do
- gem 'guard-nanoc'
+ gem 'nanoc-live'
# custom kramdown dialect
gem 'gitlab_kramdown', '~> 0.11.0'
diff --git a/Gemfile.lock b/Gemfile.lock
index d547a60a..19c7b652 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -38,7 +38,6 @@ GEM
http_parser.rb (~> 0.6.0)
eventmachine (1.2.7)
ffi (1.14.2)
- formatador (0.2.5)
gitlab-styles (6.1.0)
rubocop (~> 0.91, >= 0.91.1)
rubocop-gitlab-security (~> 0.1.1)
@@ -50,21 +49,6 @@ GEM
kramdown (~> 2.3.0)
nokogiri (~> 1.11.0)
rouge (~> 3.26.0)
- guard (2.16.2)
- formatador (>= 0.2.4)
- listen (>= 2.7, < 4.0)
- lumberjack (>= 1.0.12, < 2.0)
- nenv (~> 0.1)
- notiffany (~> 0.0)
- pry (>= 0.9.12)
- shellany (~> 0.0)
- thor (>= 0.18.1)
- guard-compat (1.2.1)
- guard-nanoc (2.1.9)
- guard (~> 2.8)
- guard-compat (~> 1.0)
- nanoc-cli (~> 4.11, >= 4.11.14)
- nanoc-core (~> 4.11, >= 4.11.14)
hamster (3.0.0)
concurrent-ruby (~> 1.0)
highline (2.0.3)
@@ -77,7 +61,6 @@ GEM
listen (3.4.1)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
- lumberjack (1.2.8)
method_source (1.0.0)
mini_portile2 (2.5.0)
minitest (5.14.4)
@@ -114,13 +97,14 @@ GEM
nanoc-checking (~> 1.0)
nanoc-cli (~> 4.11, >= 4.11.15)
nanoc-core (~> 4.11, >= 4.11.15)
- nenv (0.3.0)
+ nanoc-live (1.0.0)
+ adsf-live (~> 1.4)
+ listen (~> 3.0)
+ nanoc-cli (~> 4.11, >= 4.11.14)
+ nanoc-core (~> 4.11, >= 4.11.14)
nokogiri (1.11.1)
mini_portile2 (~> 2.5.0)
racc (~> 1.4)
- notiffany (0.1.3)
- nenv (~> 0.1)
- shellany (~> 0.0)
parallel (1.20.1)
parser (3.0.0.0)
ast (~> 2.4.1)
@@ -192,9 +176,7 @@ GEM
ffi (~> 1.9)
scss_lint (0.59.0)
sass (~> 3.5, >= 3.5.5)
- shellany (0.0.1)
slow_enumerator_tools (1.1.0)
- thor (1.0.1)
tomlrb (1.3.0)
tty-color (0.6.0)
tty-command (0.10.1)
@@ -210,14 +192,12 @@ PLATFORMS
ruby
DEPENDENCIES
- adsf (~> 1.4.5)
- adsf-live (~> 1.4.5)
builder (~> 3.2.4)
gitlab-styles (~> 6.1.0)
gitlab_kramdown (~> 0.11.0)
- guard-nanoc
highline (~> 2.0.3)
nanoc (~> 4.12.0)
+ nanoc-live
nokogiri (~> 1.11.0)
pry-byebug (~> 3.9.0)
rake (~> 13.0.3)
diff --git a/Guardfile b/Guardfile
deleted file mode 100644
index b700ee47..00000000
--- a/Guardfile
+++ /dev/null
@@ -1,24 +0,0 @@
-# A sample Guardfile
-# More info at https://github.com/guard/guard#readme
-
-## Uncomment and set this to only include directories you want to watch
-# directories %w(app lib config test spec features) \
-# .select{|d| Dir.exist?(d) ? d : UI.warning("Directory #{d} does not exist")}
-
-## Note: if you are using the `directories` clause above and you are not
-## watching the project directory ('.'), then you will want to move
-## the Guardfile to a watched dir and symlink it back, e.g.
-#
-# $ mkdir config
-# $ mv Guardfile config/
-# $ ln -s config/Guardfile .
-#
-# and, you'll have to watch "config/Guardfile" instead of "Guardfile"
-
-# frozen_string_literal: true
-
-guard 'nanoc' do
- watch('nanoc.yaml') # Change this to config.yaml if you use the old config file name
- watch('Rules')
- watch(%r{^(content|layouts|lib)/.*$})
-end