copiedbook 0.0.1 → 0.0.2
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.
- data/.gitignore +1 -0
- data/bin/copiedbook +1 -4
- data/lib/copiedbook.rb +0 -1
- data/lib/copiedbook/version.rb +1 -1
- metadata +1 -1
data/.gitignore
CHANGED
data/bin/copiedbook
CHANGED
|
@@ -19,11 +19,8 @@ require 'copiedbook'
|
|
|
19
19
|
# Configuration
|
|
20
20
|
# Config variables
|
|
21
21
|
debug = false # Set to true to get some debug information
|
|
22
|
-
current_path = File.expand_path(File.dirname(__FILE__) + '/../')
|
|
23
22
|
$log_limit = 10 # How many log files to store on log path
|
|
24
|
-
|
|
25
|
-
log_file = $log_path + "/main-" +
|
|
26
|
-
DateTime.now.strftime("%Y%m%d-%H%M%S") + ".log"
|
|
23
|
+
log_file = "main-" + DateTime.now.strftime("%Y%m%d-%H%M%S") + ".log"
|
|
27
24
|
log_file = Logger.new(log_file)
|
|
28
25
|
CONSTANT = "..."
|
|
29
26
|
variable = "..."
|
data/lib/copiedbook.rb
CHANGED
data/lib/copiedbook/version.rb
CHANGED