mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2025-01-15 17:50:28 +08:00
parent
be90f49d0c
commit
e66c2c55a7
4
Gemfile
4
Gemfile
@ -1,4 +1,8 @@
|
|||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
gem 'jekyll', '~> 1.0'
|
gem 'jekyll', '~> 1.0'
|
||||||
|
if RUBY_VERSION >= '2.0.0'
|
||||||
|
gem 'byebug'
|
||||||
|
else
|
||||||
gem 'debugger'
|
gem 'debugger'
|
||||||
|
end
|
||||||
|
20
Gemfile.lock
20
Gemfile.lock
@ -2,20 +2,19 @@ GEM
|
|||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
blankslate (2.1.2.4)
|
blankslate (2.1.2.4)
|
||||||
|
byebug (3.5.1)
|
||||||
|
columnize (~> 0.8)
|
||||||
|
debugger-linecache (~> 1.2)
|
||||||
|
slop (~> 3.6)
|
||||||
classifier (1.3.4)
|
classifier (1.3.4)
|
||||||
fast-stemmer (>= 1.0.0)
|
fast-stemmer (>= 1.0.0)
|
||||||
colorator (0.1)
|
colorator (0.1)
|
||||||
columnize (0.8.9)
|
columnize (0.8.9)
|
||||||
commander (4.1.6)
|
commander (4.1.6)
|
||||||
highline (~> 1.6.11)
|
highline (~> 1.6.11)
|
||||||
debugger (1.6.8)
|
|
||||||
columnize (>= 0.3.1)
|
|
||||||
debugger-linecache (~> 1.2.0)
|
|
||||||
debugger-ruby_core_source (~> 1.3.5)
|
|
||||||
debugger-linecache (1.2.0)
|
debugger-linecache (1.2.0)
|
||||||
debugger-ruby_core_source (1.3.5)
|
|
||||||
fast-stemmer (1.0.2)
|
fast-stemmer (1.0.2)
|
||||||
ffi (1.9.3)
|
ffi (1.9.6)
|
||||||
highline (1.6.21)
|
highline (1.6.21)
|
||||||
jekyll (1.5.1)
|
jekyll (1.5.1)
|
||||||
classifier (~> 1.3)
|
classifier (~> 1.3)
|
||||||
@ -36,7 +35,7 @@ GEM
|
|||||||
maruku (0.7.0)
|
maruku (0.7.0)
|
||||||
parslet (1.5.0)
|
parslet (1.5.0)
|
||||||
blankslate (~> 2.0)
|
blankslate (~> 2.0)
|
||||||
posix-spawn (0.3.8)
|
posix-spawn (0.3.9)
|
||||||
pygments.rb (0.5.4)
|
pygments.rb (0.5.4)
|
||||||
posix-spawn (~> 0.3.6)
|
posix-spawn (~> 0.3.6)
|
||||||
yajl-ruby (~> 1.1.0)
|
yajl-ruby (~> 1.1.0)
|
||||||
@ -46,8 +45,9 @@ GEM
|
|||||||
rb-kqueue (0.2.3)
|
rb-kqueue (0.2.3)
|
||||||
ffi (>= 0.5.0)
|
ffi (>= 0.5.0)
|
||||||
redcarpet (2.3.0)
|
redcarpet (2.3.0)
|
||||||
safe_yaml (1.0.3)
|
safe_yaml (1.0.4)
|
||||||
toml (0.1.1)
|
slop (3.6.0)
|
||||||
|
toml (0.1.2)
|
||||||
parslet (~> 1.5.0)
|
parslet (~> 1.5.0)
|
||||||
yajl-ruby (1.1.0)
|
yajl-ruby (1.1.0)
|
||||||
|
|
||||||
@ -55,5 +55,5 @@ PLATFORMS
|
|||||||
ruby
|
ruby
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
debugger
|
byebug
|
||||||
jekyll (~> 1.0)
|
jekyll (~> 1.0)
|
||||||
|
@ -2,7 +2,11 @@
|
|||||||
# Create individual pages for each icon in the FontAwesome set
|
# Create individual pages for each icon in the FontAwesome set
|
||||||
|
|
||||||
require 'yaml'
|
require 'yaml'
|
||||||
|
if RUBY_VERSION >= '2.0.0'
|
||||||
|
require 'byebug'
|
||||||
|
else
|
||||||
require 'debugger'
|
require 'debugger'
|
||||||
|
end
|
||||||
|
|
||||||
module Jekyll
|
module Jekyll
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user