Skip to content

Commit 3a490fc

Browse files
committed
Rename repo
1 parent 3d69eab commit 3a490fc

File tree

6 files changed

+23
-23
lines changed

6 files changed

+23
-23
lines changed

CNAME

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby-korea.github.io
1+
rubykr.github.io

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
ruby-korea.github.io
1+
rubykr.github.io
22
====================
33

4-
[![Build Status](https://github.com/ruby-korea/ruby-korea.github.io/workflows/Deploy/badge.svg)](https://github.com/ruby-korea/ruby-korea.github.io/actions?query=workflow%3ADeploy)
4+
[![Build Status](https://github.com/rubykr/rubykr.github.io/workflows/Deploy/badge.svg)](https://github.com/rubykr/rubykr.github.io/actions?query=workflow%3ADeploy)
55

6-
-[페이지](https://ruby-korea.github.io)는 루비에 관련된 한국어 링크를 모아
6+
-[페이지](https://rubykr.github.io)는 루비에 관련된 한국어 링크를 모아
77
한국의 루비스트가 편하게 찾을 수 있도록 만들었습니다.
8-
- 등록된 링크는 [RSS](https://ruby-korea.github.io/rss.xml),
9-
[ATOM](https://ruby-korea.github.io/feed.xml)으로도 제공하고 있습니다.
8+
- 등록된 링크는 [RSS](https://rubykr.github.io/rss.xml),
9+
[ATOM](https://rubykr.github.io/feed.xml)으로도 제공하고 있습니다.
1010

1111
기여 방법은 [기여하기](CONTRIBUTING.md)를 참고하세요.

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ end
3030
desc 'validate _site markup with validate-website'
3131
task :validate_markup do
3232
Dir.chdir('_site') do
33-
sh "validate-website-static --site 'https://ruby-korea.github.io/'"
33+
sh "validate-website-static --site 'https://rubykr.github.io/'"
3434
end
3535
end
3636

_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: 루비 프로그래밍 언어 한국어 문서
2-
url: https://ruby-korea.github.io
2+
url: https://rubykr.github.io
33
markdown: kramdown
44
highlighter: pygments
55
timezone: Asia/Seoul

_layouts/default.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
66
<meta name="description" content="Ruby 한국어 문서 : " />
77
<meta name="viewport" content="width=device-width">
8-
<link rel="alternate" type="application/atom+xml" title="{{ page.title }}" href="https://ruby-korea.github.io/feed.xml" />
8+
<link rel="alternate" type="application/atom+xml" title="{{ page.title }}" href="https://rubykr.github.io/feed.xml" />
99
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
1010
<link href="feed.xml" type="application/atom+xml" rel="alternate" title="{{ page.title }}" />
1111
<title>{{ page.title }}</title>
@@ -15,7 +15,7 @@
1515
<!-- HEADER -->
1616
<div id="header_wrap" class="outer">
1717
<header class="inner">
18-
<a id="forkme_banner" href="https://github.com/ruby-korea/ruby-korea.github.io/blob/jekyll/index.md">Edit on GitHub</a>
18+
<a id="forkme_banner" href="https://github.com/rubykr/rubykr.github.io/blob/jekyll/index.md">Edit on GitHub</a>
1919

2020
<h1 id="project_title">{{ page.title }}</h1>
2121
<h2 id="project_tagline">
@@ -42,7 +42,7 @@ <h2>Comments</h2>
4242
<div id="disqus_thread"></div>
4343
<script type="text/javascript">
4444
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
45-
var disqus_shortname = 'ruby-korea'; // required: replace example with your forum shortname
45+
var disqus_shortname = 'rubykr'; // required: replace example with your forum shortname
4646

4747
/* * * DON'T EDIT BELOW THIS LINE * * */
4848
(function() {

index.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -64,16 +64,16 @@ title: 루비 프로그래밍 언어 한국어 문서
6464
- [레일즈 스타일 가이드](https://github.com/pureugong/rails-style-guide/blob/master/README-koKR.md){: .article data-tags="translated rails"}
6565
- [지킬(jekyll)](http://jekyllrb-ko.github.io){: .article data-tags="translated gem"}
6666
- [시나트라(sinatra)](http://www.sinatrarb.com/intro-ko.html){: .article data-tags="translated gem"}
67-
- [번들러(Bundler)](http://ruby-korea.github.io/bundler-site/){: .article data-tags="translated gem"}
68-
- [루비젬스(RubyGems)](http://ruby-korea.github.io/rubygems-guides/){: .article data-tags="translated gem"}
67+
- [번들러(Bundler)](http://rubykr.github.io/bundler-site/){: .article data-tags="translated gem"}
68+
- [루비젬스(RubyGems)](http://rubykr.github.io/rubygems-guides/){: .article data-tags="translated gem"}
6969
- RubyMotion 공식 문서 [ ](#){: .article data-tags="translated rubymotion"}
7070
- Articles
71-
- [Use CocoaPods Dependencies in RubyMotion Apps](http://ruby-korea.github.io/RubyMotionDocumentation/articles/cocoapods/)
72-
- [Submit RubyMotion Apps to TestFlight](http://ruby-korea.github.io/RubyMotionDocumentation/articles/testflight/)
73-
- [Setting up your editor to work with RubyMotion](http://ruby-korea.github.io/RubyMotionDocumentation/articles/editors/)
74-
- [Debugging RubyMotion applications](http://ruby-korea.github.io/RubyMotionDocumentation/articles/debugging/)
75-
- [Writing Ruby gems for RubyMotion](http://ruby-korea.github.io/RubyMotionDocumentation/articles/gems/)
76-
- [Writing Tests for RubyMotion Apps](http://ruby-korea.github.io/RubyMotionDocumentation/articles/testing/)
71+
- [Use CocoaPods Dependencies in RubyMotion Apps](http://rubykr.github.io/RubyMotionDocumentation/articles/cocoapods/)
72+
- [Submit RubyMotion Apps to TestFlight](http://rubykr.github.io/RubyMotionDocumentation/articles/testflight/)
73+
- [Setting up your editor to work with RubyMotion](http://rubykr.github.io/RubyMotionDocumentation/articles/editors/)
74+
- [Debugging RubyMotion applications](http://rubykr.github.io/RubyMotionDocumentation/articles/debugging/)
75+
- [Writing Ruby gems for RubyMotion](http://rubykr.github.io/RubyMotionDocumentation/articles/gems/)
76+
- [Writing Tests for RubyMotion Apps](http://rubykr.github.io/RubyMotionDocumentation/articles/testing/)
7777
- [Better Specs](http://betterspecs.org/ko){: .article data-tags="translated test"}
7878

7979
## [](#book)
@@ -151,13 +151,13 @@ title: 루비 프로그래밍 언어 한국어 문서
151151

152152
## 기여하기
153153

154-
Ruby Korea 그룹에서는 루비와 관련된 문서를 작성하고, 좋은 글을 번역하고 있습니다. 번역에 참가하시고자 하는 분은 Github의 [Ruby Korea Organization 페이지](https://github.com/ruby-korea)[기여하기](https://github.com/ruby-korea/ruby-korea.github.io/wiki/%EA%B8%B0%EC%97%AC%ED%95%98%EA%B8%B0) 페이지를 참고해주시기 바랍니다.
154+
그룹에서는 루비와 관련된 문서를 작성하고, 좋은 글을 번역하고 있습니다. 번역에 참가하시고자 하는 분은 Github의 [Rubykr Organization 페이지](https://github.com/rubykr)[기여하기](https://github.com/rubykr/rubykr.github.io/wiki/%EA%B8%B0%EC%97%AC%ED%95%98%EA%B8%B0) 페이지를 참고해주시기 바랍니다.
155155

156-
또한 이 문서에 추가하시고 싶은 링크가 있으시면 [저장소](https://github.com/ruby-korea/ruby-korea.github.io)에 풀리퀘스트를 보내주시거나 아래에 댓글을 남겨주시기 바랍니다.
157-
업데이트하는데 도움을 주신 [모든 분](https://github.com/ruby-korea/ruby-korea.github.io/graphs/contributors)께 감사드립니다.
156+
또한 이 문서에 추가하시고 싶은 링크가 있으시면 [저장소](https://github.com/rubykr/rubykr.github.io)에 풀리퀘스트를 보내주시거나 아래에 댓글을 남겨주시기 바랍니다.
157+
업데이트하는데 도움을 주신 [모든 분](https://github.com/rubykr/rubykr.github.io/graphs/contributors)께 감사드립니다.
158158

159159
## Links
160160

161-
- [Github Ruby-Korea Organization](https://github.com/ruby-korea)
161+
- [Github Ruby-Korea Organization](https://github.com/rubykr)
162162
- [Facebook Ruby Korea Group](https://www.facebook.com/groups/rubykr)
163163
- [루비 귀금속 매장](https://discord.gg/uHQj7X68Mf)

0 commit comments

Comments
 (0)