codelation-cli 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/codelation/development/dot_files.rb +2 -0
- data/lib/codelation/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc176acc9fee7800a6a750fa7607b246d5c69c62
|
4
|
+
data.tar.gz: fff44c2a874d58af1f16c599042b0bbe64216198
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 769e2a6eed0006c6591a9621073521ea057162fd7d58889bf85f5d55519e73659e73fd053577665bc09bc6559ced95210b0238d826e01fa8fad88e9363915184
|
7
|
+
data.tar.gz: 9c3b0e8bd161bc7e7ea558f03cfb0a6b223e15626950aee16cb93866477390a8a896367776fa41354dd6fd2eb7f2351e3d7fffcd6fa4206f83eef3f8c069e5b5
|
@@ -1,3 +1,4 @@
|
|
1
|
+
require "fileutils"
|
1
2
|
require "thor"
|
2
3
|
|
3
4
|
module Codelation
|
@@ -18,6 +19,7 @@ module Codelation
|
|
18
19
|
copy_file "dot_files/.scss-lint.yml", "~/.scss-lint.yml"
|
19
20
|
|
20
21
|
# Add `source ~/.codelation.bash` to ~/.bash_profile if it doesn't exist
|
22
|
+
FileUtils.touch(File.expand_path("~/.bash_profile"))
|
21
23
|
append_to_file "~/.bash_profile", "source ~/.codelation/bash/.codelation.bash"
|
22
24
|
end
|
23
25
|
end
|
data/lib/codelation/version.rb
CHANGED