ports/www/tdiary/files/patch-Gemfile
Koichiro Iwao e77233cde7 www/tdiary: Update to 5.0.13
PR:		236908
Submitted by:	Yasuhiro KIMURA <yasu@utahime.org> (maintainer, initial revision)
Relnotes:	http://www.tdiary.org/20190329.html
		http://www.tdiary.org/20190403.html
2019-05-07 09:04:29 +00:00

40 lines
993 B
Text

--- Gemfile.orig 2019-03-31 00:44:16 UTC
+++ Gemfile
@@ -6,37 +6,3 @@ gem 'fastimage'
gem 'emot'
gem 'mail'
gem 'rake'
-
-group :development do
- gem 'pit', require: false
- gem 'racksh', require: false
- gem 'redcarpet'
- gem 'octokit'
- gem 'mime-types'
-
- platforms :ruby_23, :ruby_24 do
- gem 'ruby-debug-ide'
- gem 'debase'
- end
-
- group :test do
- gem 'pry-byebug', platforms: [:ruby_23, :ruby_24]
- gem 'test-unit'
- gem 'rspec'
- gem 'capybara', require: 'capybara/rspec'
- gem 'selenium-webdriver'
- gem 'launchy'
- gem 'sequel'
- gem 'sqlite3'
- gem 'jasmine', '< 3'
- gem 'simplecov', require: false
- gem 'coveralls', require: false
- end
-end
-
-# https://github.com/redmine/redmine/blob/master/Gemfile#L89
-local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local")
-if File.exist?(local_gemfile)
- puts "Loading Gemfile.local ..." if $DEBUG # `ruby -d` or `bundle -v`
- instance_eval File.read(local_gemfile)
-end