gradesfirst 0.6.3 → 0.6.4
Sign up to get free protection for your applications and to get access to all the features.
- data/gradesfirst.gemspec +1 -1
- data/lib/gradesfirst/config.rb +1 -1
- metadata +1 -1
data/gradesfirst.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.platform = Gem::Platform::RUBY
|
3
3
|
s.name = "gradesfirst"
|
4
|
-
s.version = "0.6.
|
4
|
+
s.version = "0.6.4"
|
5
5
|
s.summary = "GradesFirst command line utility for developers."
|
6
6
|
s.description = "This utility will help manage the various tasks developers need to do on their workstation such as database updates."
|
7
7
|
s.license = "MIT"
|
data/lib/gradesfirst/config.rb
CHANGED
@@ -18,7 +18,7 @@ See "gf help <command>" for details on configuration settings.
|
|
18
18
|
end
|
19
19
|
|
20
20
|
def self.load_paths
|
21
|
-
@@load_paths ||= [".env.gf", "
|
21
|
+
@@load_paths ||= [".env.gf", "#{Dir.home}/.env.gf", ".env.gf.master"]
|
22
22
|
end
|
23
23
|
|
24
24
|
def self.load_paths=(paths)
|