This commit is contained in:
Adrian Hinz 2017-09-28 22:18:25 +02:00
commit e48dff9d78
7 changed files with 5 additions and 72 deletions

2
bin/bundle Executable file → Normal file
View File

@ -1,3 +1,3 @@
#!/usr/bin/env ruby
#!/usr/bin/env ruby.exe
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
load Gem.bin_path('bundler', 'bundle')

7
bin/rails Executable file → Normal file
View File

@ -1,9 +1,4 @@
#!/usr/bin/env ruby
begin
load File.expand_path('../spring', __FILE__)
rescue LoadError => e
raise unless e.message.include?('spring')
end
#!/usr/bin/env ruby.exe
APP_PATH = File.expand_path('../config/application', __dir__)
require_relative '../config/boot'
require 'rails/commands'

7
bin/rake Executable file → Normal file
View File

@ -1,9 +1,4 @@
#!/usr/bin/env ruby
begin
load File.expand_path('../spring', __FILE__)
rescue LoadError => e
raise unless e.message.include?('spring')
end
#!/usr/bin/env ruby.exe
require_relative '../config/boot'
require 'rake'
Rake.application.run

2
bin/setup Executable file → Normal file
View File

@ -1,4 +1,4 @@
#!/usr/bin/env ruby
#!/usr/bin/env ruby.exe
require 'pathname'
require 'fileutils'
include FileUtils

View File

@ -1,17 +0,0 @@
#!/usr/bin/env ruby
# This file loads spring without using Bundler, in order to be fast.
# It gets overwritten when you run the `spring binstub` command.
unless defined?(Spring)
require 'rubygems'
require 'bundler'
lockfile = Bundler::LockfileParser.new(Bundler.default_lockfile.read)
spring = lockfile.specs.detect { |spec| spec.name == "spring" }
if spring
Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path
gem 'spring', spring.version
require 'spring/binstub'
end
end

2
bin/update Executable file → Normal file
View File

@ -1,4 +1,4 @@
#!/usr/bin/env ruby
#!/usr/bin/env ruby.exe
require 'pathname'
require 'fileutils'
include FileUtils

View File

@ -1,40 +0,0 @@
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>ThisCRM</title>
<style>
.fire_cl {
color:#f9bd47;
font-family: "Courier New";
}
.storm_cl {
color:#afc9ff;
font-family: "Courier New";
}
.shadow_big {
text-shadow: 2px 2px 5px black;
font-family: "Courier New";
}
.shadow_small {
text-shadow: 1px 1px black;
font-family: "Courier New";
}
a.no_u {
color: inherit; /* blue colors for links too */
text-decoration: inherit; /* no underline */
}
</style>
</head>
<body>
<center>
<img alt="ThisCRM" src="thiscrm_logo.png" />
<p>Copyright &copy; <a class="no_u" href="http://firestorm.pl" target="__blank" style><span class="fire_cl shadow_small">Fire</span><span class="storm_cl shadow_small">Storm</span></a></p>
</center>
</body>
</html>