Commit changes

master
aeris 2019-01-20 15:30:01 +01:00
parent 4de2f72e23
commit ab8730cb1f
9 changed files with 30 additions and 19 deletions

1
.env.development 100644
View File

@ -0,0 +1 @@
DEBUG_HTTP = true

1
.gitignore vendored
View File

@ -21,3 +21,4 @@
.byebug_history
.generators
.env*.local

View File

@ -1,4 +1,4 @@
ruby '2.5.3'
ruby '2.6.0'
source 'https://rubygems.org'
gem 'rails'
@ -16,7 +16,7 @@ gem 'thor'
gem 'colorize'
gem 'pry-rails'
gem 'parallel'
gem 'diffy', '3.2.1'
gem 'diffy'
gem 'ruby-xz'
gem 'therubyracer', platforms: :ruby

View File

@ -42,7 +42,7 @@ GEM
i18n (>= 0.7, < 2)
minitest (~> 5.1)
tzinfo (~> 1.1)
addressable (2.5.2)
addressable (2.6.0)
public_suffix (>= 2.0.2, < 4.0)
arel (9.0.0)
awesome_print (1.8.0)
@ -72,10 +72,10 @@ GEM
crass (1.0.4)
debug_inspector (0.0.3)
diff-lcs (1.3)
diffy (3.2.1)
dotenv (2.5.0)
dotenv-rails (2.5.0)
dotenv (= 2.5.0)
diffy (3.3.0)
dotenv (2.6.0)
dotenv-rails (2.6.0)
dotenv (= 2.6.0)
railties (>= 3.2, < 6.0)
em-websocket (0.5.1)
eventmachine (>= 0.12.9)
@ -87,7 +87,7 @@ GEM
multipart-post (>= 1.2, < 3)
ffi (1.10.0)
formatador (0.2.5)
globalid (0.4.1)
globalid (0.4.2)
activesupport (>= 4.2.0)
guard (2.15.0)
formatador (>= 0.2.4)
@ -112,7 +112,7 @@ GEM
httparty (0.16.3)
mime-types (~> 3.0)
multi_xml (>= 0.5.2)
i18n (1.5.1)
i18n (1.5.2)
concurrent-ruby (~> 1.0)
jquery-rails (4.3.3)
rails-dom-testing (>= 1, < 3)
@ -139,19 +139,19 @@ GEM
mini_mime (1.0.1)
mini_portile2 (2.4.0)
minitest (5.11.3)
msgpack (1.2.4)
msgpack (1.2.6)
multi_json (1.13.1)
multi_xml (0.6.0)
multipart-post (2.0.0)
nenv (0.3.0)
nio4r (2.3.1)
nokogiri (1.10.0)
nokogiri (1.10.1)
mini_portile2 (~> 2.4.0)
notiffany (0.1.1)
nenv (~> 0.1)
shellany (~> 0.0)
parallel (1.12.1)
pg (1.1.3)
parallel (1.13.0)
pg (1.1.4)
pry (0.12.2)
coderay (~> 1.1.0)
method_source (~> 0.9.0)
@ -204,7 +204,7 @@ GEM
rspec-mocks (3.8.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.8.0)
rspec-rails (3.8.1)
rspec-rails (3.8.2)
actionpack (>= 3.0)
activesupport (>= 3.0)
railties (>= 3.0)
@ -227,7 +227,7 @@ GEM
sprockets (>= 2.8, < 4.0)
sprockets-rails (>= 2.0, < 4.0)
tilt (>= 1.1, < 3)
sentry-raven (2.7.4)
sentry-raven (2.8.0)
faraday (>= 0.7.6, < 1.0)
shellany (0.0.1)
spring (2.0.2)
@ -276,7 +276,7 @@ DEPENDENCIES
bootsnap
coffee-rails
colorize
diffy (= 3.2.1)
diffy
dotenv-rails
guard
guard-livereload
@ -307,7 +307,7 @@ DEPENDENCIES
webmock
RUBY VERSION
ruby 2.5.3p105
ruby 2.6.0p0
BUNDLED WITH
1.17.3
2.0.1

1
Procfile 100644
View File

@ -0,0 +1 @@
web: bundle exec puma -C config/puma.rb

View File

@ -0,0 +1 @@
#= require rails-ujs

View File

@ -0,0 +1,2 @@
module DiffsHelper
end

View File

@ -26,7 +26,7 @@
<h3><%= link_to (site.name || site.url), site.url %></h3>
</div>
<div class="txtright">
<%= link_to "↑ Top ↑", diffs_path(anchor: :top) %>
<%= link_to "↑ Top ↑", '#top' %>
</div>
</div>
<ul class="unstyled mls">

View File

@ -0,0 +1,5 @@
require 'rails_helper'
RSpec.describe DiffsController, type: :controller do
end