Skip to content

Commit 1d74845

Browse files
committed
Ruby / Gemfile だけで開発できる環境に使用ツールを整理した
1 parent 7bae665 commit 1d74845

File tree

3 files changed

+62
-0
lines changed

3 files changed

+62
-0
lines changed

.ruby-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.1.2

Gemfile

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
source "https://rubygems.org"
22

3+
ruby '3.1.2'
4+
35
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
46

57
gem 'activesupport'
8+
gem "jekyll"

Gemfile.lock

+58
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,76 @@ GEM
66
i18n (>= 1.6, < 2)
77
minitest (>= 5.1)
88
tzinfo (~> 2.0)
9+
addressable (2.8.1)
10+
public_suffix (>= 2.0.2, < 6.0)
11+
colorator (1.1.0)
912
concurrent-ruby (1.1.10)
13+
em-websocket (0.5.3)
14+
eventmachine (>= 0.12.9)
15+
http_parser.rb (~> 0)
16+
eventmachine (1.2.7)
17+
ffi (1.15.5)
18+
forwardable-extended (2.6.0)
19+
http_parser.rb (0.8.0)
1020
i18n (1.12.0)
1121
concurrent-ruby (~> 1.0)
22+
jekyll (4.3.1)
23+
addressable (~> 2.4)
24+
colorator (~> 1.0)
25+
em-websocket (~> 0.5)
26+
i18n (~> 1.0)
27+
jekyll-sass-converter (>= 2.0, < 4.0)
28+
jekyll-watch (~> 2.0)
29+
kramdown (~> 2.3, >= 2.3.1)
30+
kramdown-parser-gfm (~> 1.0)
31+
liquid (~> 4.0)
32+
mercenary (>= 0.3.6, < 0.5)
33+
pathutil (~> 0.9)
34+
rouge (>= 3.0, < 5.0)
35+
safe_yaml (~> 1.0)
36+
terminal-table (>= 1.8, < 4.0)
37+
webrick (~> 1.7)
38+
jekyll-sass-converter (2.2.0)
39+
sassc (> 2.0.1, < 3.0)
40+
jekyll-watch (2.2.1)
41+
listen (~> 3.0)
42+
kramdown (2.4.0)
43+
rexml
44+
kramdown-parser-gfm (1.1.0)
45+
kramdown (~> 2.0)
46+
liquid (4.0.3)
47+
listen (3.7.1)
48+
rb-fsevent (~> 0.10, >= 0.10.3)
49+
rb-inotify (~> 0.9, >= 0.9.10)
50+
mercenary (0.4.0)
1251
minitest (5.16.3)
52+
pathutil (0.16.2)
53+
forwardable-extended (~> 2.6)
54+
public_suffix (5.0.0)
55+
rb-fsevent (0.11.2)
56+
rb-inotify (0.10.1)
57+
ffi (~> 1.0)
58+
rexml (3.2.5)
59+
rouge (4.0.0)
60+
safe_yaml (1.0.5)
61+
sassc (2.4.0)
62+
ffi (~> 1.9)
63+
terminal-table (3.0.2)
64+
unicode-display_width (>= 1.1.1, < 3)
1365
tzinfo (2.0.5)
1466
concurrent-ruby (~> 1.0)
67+
unicode-display_width (2.3.0)
68+
webrick (1.7.0)
1569

1670
PLATFORMS
1771
arm64-darwin-21
1872

1973
DEPENDENCIES
2074
activesupport
75+
jekyll
76+
77+
RUBY VERSION
78+
ruby 3.1.2p20
2179

2280
BUNDLED WITH
2381
2.3.22

0 commit comments

Comments
 (0)