File tree 7 files changed +30
-1
lines changed
7 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 21
21
22
22
# Ignore master key for decrypting credentials and more.
23
23
/config /master.key
24
+
25
+ /.idea
Original file line number Diff line number Diff line change 1
1
#!/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
2
7
APP_PATH = File . expand_path ( '../config/application' , __dir__ )
3
8
require_relative '../config/boot'
4
9
require 'rails/commands'
Original file line number Diff line number Diff line change 1
1
#!/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
2
7
require_relative '../config/boot'
3
8
require 'rake'
4
9
Rake . application . run
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 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 ==
You can’t perform that action at this time.
0 commit comments