takelage 0.14.5 → 0.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/takelage/bit/clipboard/lib.rb +0 -19
- data/lib/takelage/bit/clipboard/paste.rb +0 -1
- data/lib/takelage/bit/clipboard/pull.rb +0 -1
- data/lib/takelage/version +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5501434439da65464a4c4b1139fd846a1bb0f868f92f00ab9779bf7dc9443644
|
|
4
|
+
data.tar.gz: fb889362064dce9ac2214a12a39d3393ddb8ffbe282cf30958e855b39e5d9a19
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 902d3b37820392cafb1736a9bf6a653d113b99fa55aa8eea61e40235dfa30b1d16104ad3145c1d8af0763dd4be3492ebdda58f8ac4c1780f5192f94efaea003d
|
|
7
|
+
data.tar.gz: fcb2a99561552c7db5d1c3ec63feb08634891e1ccfa6d9b8e50b18935a1ac76fdc0a5f47bcc1850743ffd0c0b30c4ffef1580a47874c8fd6e6129db8fbe7f492
|
|
@@ -106,25 +106,6 @@ module BitClipboardLib
|
|
|
106
106
|
false
|
|
107
107
|
end
|
|
108
108
|
|
|
109
|
-
# Genereate .gitignore if bitignore is present
|
|
110
|
-
def _bit_clipboard_lib_handle_bitignore
|
|
111
|
-
log.debug 'Handling bitgnore files'
|
|
112
|
-
|
|
113
|
-
# find all bitgnore files
|
|
114
|
-
Dir.glob('./**/bitignore').each do |file|
|
|
115
|
-
# get directory of bitignore file
|
|
116
|
-
dir = File.dirname file
|
|
117
|
-
|
|
118
|
-
# build gitignore filepath
|
|
119
|
-
gitignore_file = "#{dir}/.gitignore"
|
|
120
|
-
|
|
121
|
-
unless File.exist? gitignore_file
|
|
122
|
-
log.debug "Creating \".gitignore\" in \"#{dir}\""
|
|
123
|
-
File.open(gitignore_file, 'w') { |gitignore| gitignore.write('*') }
|
|
124
|
-
end
|
|
125
|
-
end
|
|
126
|
-
end
|
|
127
|
-
|
|
128
109
|
# Generate bit component ID.
|
|
129
110
|
def _bit_clipboard_lib_id(name)
|
|
130
111
|
id = ''
|
data/lib/takelage/version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.15.0
|