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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 541fce28b33f9efe5631c3ee2c91b7e5ee61c5cf2b9d33913790d6575fd46388
4
- data.tar.gz: 306f344425e0f65aa3e19b30fa721bdbf91b561e56f68fd4e07273a861140c46
3
+ metadata.gz: a4f7b3ef84ffd8043657a8fc28a68f0f37bd0e7b7480547106a2ddef35eaf002
4
+ data.tar.gz: ba0ad7a0f8f10fad47a287f79a79798709b9cd3a8e40a90692a088e5215ef6c0
5
5
  SHA512:
6
- metadata.gz: b3a503f11f950f2e8f0e241555a71308024a1a7a18a9d0808887a81cf49d6f3d8a9ec1fab38eff9578d73af6f83b7c6a5811d85f342df8dfe9209517bb0c18af
7
- data.tar.gz: 68c51c580b004f6de15cfc2568b412312e5195cb317d271061b4717e75b943f09ba2da3cea4df959559357e14c1437ef8f6883d70f84d1ee80c07e8f6e05277a
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Bonobot
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
@@ -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.0
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