Skip to content

Commit

Permalink
Merge pull request #552 from tdiary/remove_ruby_2_0
Browse files Browse the repository at this point in the history
remove about ruby 2.0 or replace to 2.1, see #514
  • Loading branch information
tdtds committed Mar 10, 2016
2 parents a6a59cb + cc1ced7 commit 30eebb0
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ tDiaryには以下のような特徴があります。

### レンタルサーバーユーザにやさしい

必要なのはRuby(2.0.0以降に対応)だけ。単独でCGIとして動作し、基本機能はデータベースや追加のライブラリを必要としません。
必要なのはRuby(2.1.0以降に対応)だけ。単独でCGIとして動作し、基本機能はデータベースや追加のライブラリを必要としません。

### プラグインで拡張できます

Expand All @@ -32,4 +32,4 @@ tDiaryには以下のような特徴があります。

### その他

インストールにはドキュメント(doc/INSTALL.html)を参照して下さい。動作にはruby(2.0.0以降)と、CGIもしくはRackをサポートするWebサーバが必要です。
インストールにはドキュメント(doc/INSTALL.html)を参照して下さい。動作にはruby(2.1.0以降)と、CGIもしくはRackをサポートするWebサーバが必要です。
2 changes: 1 addition & 1 deletion doc/HOWTO-testing-tDiary.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ tDiary-3.0.1.20101011 以降のバージョンでは tDiary を test するた

tDiary でテストを実行するためには以下の環境を用意する必要があります。

- Ruby 2.0.0 以降
- Ruby 2.1.0 以降
- Bundler 1.3.5 以降

動かし方
Expand Down
2 changes: 1 addition & 1 deletion doc/INSTALL-paas.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Heroku の New App ページになったら、下記の情報を入力して、D
tDiary を sqale で動作させるためには以下のツールが必要となります。

- [git](http://git-scm.com)
- Ruby 2.0.0 以降
- Ruby 2.1.0 以降
- RubyGems 1.3.7 以降
- Bundler 1.0.0 以降

Expand Down
2 changes: 1 addition & 1 deletion doc/README.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ You can choice a grammar of writing your diary by 'Style' feature. Some style fi

### Written in Ruby

Important :-). tDiary requires Ruby-2.0.0 or later.
Important :-). tDiary requires Ruby 2.1.0 or later.

### Others

Expand Down
2 changes: 1 addition & 1 deletion doc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ iモードに限らず、ほとんどの携帯電話やPalm・ザウルスなど

### Rubyで書かれている

重要なポイントでしょう:-)??ruby 2.0.0以上が必要です。
重要なポイントでしょう:-) ruby 2.1.0以上が必要です。

セクション(段落)アンカーや過去の日記の参照など、一般的なWeb日記システムの持つ機能は基本的にサポートしています。

Expand Down
2 changes: 1 addition & 1 deletion lib/tdiary/tasks/release.rake
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def make_tarball( repo, version = nil )
end

Dir.chdir '.bundle/ruby' do
versions = %w(2.0.0 2.1.0 2.2.0 2.3.0)
versions = %w(2.1.0 2.2.0 2.3.0)
current = `ls`.chomp
versions.each {|version|
FileUtils.cp_r current, version unless current == version
Expand Down
2 changes: 1 addition & 1 deletion tdiary.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.required_ruby_version = '>= 2.0.0'
spec.required_ruby_version = '>= 2.1.0'

spec.add_dependency 'thor', '~> 0.18'
spec.add_dependency "bundler", "~> 1.3"
Expand Down

0 comments on commit 30eebb0

Please sign in to comment.