Initial changes
This commit is contained in:
parent
2e81a89f83
commit
85505e71dc
|
|
@ -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')
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env ruby
|
||||
#!/usr/bin/env ruby.exe
|
||||
require 'pathname'
|
||||
require 'fileutils'
|
||||
include FileUtils
|
||||
|
|
|
|||
17
bin/spring
17
bin/spring
|
|
@ -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
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env ruby
|
||||
#!/usr/bin/env ruby.exe
|
||||
require 'pathname'
|
||||
require 'fileutils'
|
||||
include FileUtils
|
||||
|
|
|
|||
|
|
@ -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 © <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>
|
||||
Loading…
Reference in New Issue