Skip to content

Commit e8067f6

Browse files
committed
Init commit
1 parent 43fd4dd commit e8067f6

File tree

7 files changed

+30
-1
lines changed

7 files changed

+30
-1
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@
2121

2222
# Ignore master key for decrypting credentials and more.
2323
/config/master.key
24+
25+
/.idea

bin/rails

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
#!/usr/bin/env ruby
2+
begin
3+
load File.expand_path('../spring', __FILE__)
4+
rescue LoadError => e
5+
raise unless e.message.include?('spring')
6+
end
27
APP_PATH = File.expand_path('../config/application', __dir__)
38
require_relative '../config/boot'
49
require 'rails/commands'

bin/rake

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
#!/usr/bin/env ruby
2+
begin
3+
load File.expand_path('../spring', __FILE__)
4+
rescue LoadError => e
5+
raise unless e.message.include?('spring')
6+
end
27
require_relative '../config/boot'
38
require 'rake'
49
Rake.application.run

bin/spring

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/usr/bin/env ruby
2+
3+
# This file loads Spring without using Bundler, in order to be fast.
4+
# It gets overwritten when you run the `spring binstub` command.
5+
6+
unless defined?(Spring)
7+
require 'rubygems'
8+
require 'bundler'
9+
10+
lockfile = Bundler::LockfileParser.new(Bundler.default_lockfile.read)
11+
spring = lockfile.specs.detect { |spec| spec.name == 'spring' }
12+
if spring
13+
Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path
14+
gem 'spring', spring.version
15+
require 'spring/binstub'
16+
end
17+
end

config/credentials.yml.enc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
iZGaaz7Udpxw1b0g0btM2hD8N9TxZ6kkxknviWl8iKFItOhuMrfJFxjTxYHo9dCYe4uqhjmFmqAKWi019mabcgghb+LD+eWEME/lZAlwtFfDdnT9Xl/BcuyK4ugCkvbAfKU63WpXApJt1VRyb4OZAyVTQzJzeqk1sNhSLk2wTh3iP4BVeoTE4IT/qgUt7WOF4ZsQDCbndFCa8JR6I7vndYSXnpukZeTHIJ7AuzjVe+cblmkrESRbGmyfQq48xj8DtbAldCHpqMQ8NAa6rmGVgyoQ5n/MVwsEj1oPlbHcYjy2IiwmTBkqnx8yvlcoi4tzZF8YK56YgnLtTxqfbxYd1wEg8pD3KCF1QWFelVuJ6u00EA7MjHfv3XZi5cEVfmEgjbiwQTrZi5Kp5VR0/peek8Nyyn0LkSBbbFwp--ZEymesErUIK2j6Za--6HmFUaZqJVkwaNDWbx2NFw==
1+
9eF61a6sT9Tcd/BjhdZI2AVJuiRqO5khfZmzeZVdgvXXu24kIZsSyl6WNJyIrK2KvuxK+ykV2emNW4pAVP+Hu8eCf0WYS+C50EwDzFLNT+EZwixcTlMsMIsWXgXnJ2kLLagoABZ/DMlhZ9Su0uM4+lJv6IEUwg3QFg1fXjezDZQhrbqRGunWTTzu/bLL2zMAqfNFSlvBKK/Zggg3vfZE5+madgBg8YgfwHsUfHNvLgtdqKJn1CJOisafRo3WXnL/Ak8RhzJVproLzelYIKRnYFGCU7QlX2wJqiy3HdiVrYlTR5tHwMX6s2Bi+Ar9cWAJkwMjez3tYco2G0stI6eZP2rFfa9FsK/Ge7nb3sgc3oojLd+auWTFLEJ/MmItUnbW6WuAWaPjLVqB24aH57NdWC/e4qQXsjUeA+PM--j2F/mFjfoMyTizub--JtutYp8oAe1aevNU2MuSQA==

log/.keep

Whitespace-only changes.

tmp/.keep

Whitespace-only changes.

0 commit comments

Comments
 (0)