bonobot 0.1.0 → 0.1.1
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/config/bonobot_configuration_example.yml +18 -0
- data/lib/bonobot/version.rb +1 -1
- data/lib/tasks/bonobot_tasks.rake +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a4f7b3ef84ffd8043657a8fc28a68f0f37bd0e7b7480547106a2ddef35eaf002
|
|
4
|
+
data.tar.gz: ba0ad7a0f8f10fad47a287f79a79798709b9cd3a8e40a90692a088e5215ef6c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 488337ea6b5a647c1563cec5b77864cdb3aa4bef9a50a387df0053635d9b83ccabbc796c637bbcfc02ad89b3029f5803eaf6a058dbd6d415071605570387a52f
|
|
7
|
+
data.tar.gz: d31fc7230c48c77b7de01c56bde1d64631950f64cd757b7bf28084f22e870c221a253495a2b994010dd4fa2dde7aba01ae0c2d092bc31fb44304f420f867db43
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
############################################
|
|
2
|
+
# Bonobot configuration file #
|
|
3
|
+
# This file is used to configure Bonobot #
|
|
4
|
+
# https://github.com/armandfardeau/bonobot #
|
|
5
|
+
############################################
|
|
6
|
+
|
|
7
|
+
##### Status file configuration ######
|
|
8
|
+
# status_file_path: "" # default to Rails.root
|
|
9
|
+
# status_file_name: "" # default to 'status'
|
|
10
|
+
|
|
11
|
+
##### Overload matching configuration ######
|
|
12
|
+
# included_dirs: [] # default to ['app']
|
|
13
|
+
# files_pattern: [] # default to ['rb', 'erb']
|
|
14
|
+
# excluded_files: [] # default to []
|
|
15
|
+
|
|
16
|
+
# Fingerprint configuration
|
|
17
|
+
# fingerprint_algorithm: "md5" # default to "md5", available: "md5", "sha1", "sha256"
|
|
18
|
+
# fingerprint_human_readable: false # default to false, available: true, false
|
data/lib/bonobot/version.rb
CHANGED
|
@@ -49,7 +49,7 @@ namespace :bonobot do
|
|
|
49
49
|
desc "Install bonobot"
|
|
50
50
|
task install: :environment do
|
|
51
51
|
dir = Gem::Specification.find_by_name("bonobot").gem_dir
|
|
52
|
-
FileUtils.cp_r File.join(dir, "bonobot_configuration_example.yml"), ".bonobot.yml"
|
|
52
|
+
FileUtils.cp_r File.join(dir, "config", "bonobot_configuration_example.yml"), ".bonobot.yml"
|
|
53
53
|
puts "Bonobot configuration installed at .bonobot.yml"
|
|
54
54
|
end
|
|
55
55
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bonobot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- armandfardeau
|
|
@@ -160,6 +160,7 @@ files:
|
|
|
160
160
|
- MIT-LICENSE
|
|
161
161
|
- README.md
|
|
162
162
|
- Rakefile
|
|
163
|
+
- config/bonobot_configuration_example.yml
|
|
163
164
|
- lib/bonobot.rb
|
|
164
165
|
- lib/bonobot/annotator.rb
|
|
165
166
|
- lib/bonobot/configuration.rb
|