audit_weasel 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7959e2a2946196d79cc052628975d4d6161475f8
4
- data.tar.gz: c9bf245a0ee7bab30628209c0b636ca1895d4c69
3
+ metadata.gz: 306e06746d5a06e414edfd3aa5d888f0b9110c75
4
+ data.tar.gz: 83c01b00a8cc30e8969c79d2dc92173a96d37984
5
5
  SHA512:
6
- metadata.gz: 3f67758c11b359ee9376d5d8a11c23e44c02e57e7a7ad4ac719b74ee84fcaaad53c993c04cd1c00b48a1da73d0c929053a27545de780d2128049c294fb481bfb
7
- data.tar.gz: 74f6eee6942b0e253a8319d5114e729818897689f86bca07e625363fff1d2633e02644d5d61b66bf26cf71590627d1f0a18bd8c9556af6ab12746c3dafd10870
6
+ metadata.gz: 563026ba46d2e4ab3a22684b352daacaf6f65c0c7ae89de7316497391d541969a03d9d04b58f3ffb6c8bdfbba1003634dff01798c96df0df5944453bbfd97246
7
+ data.tar.gz: 5d81bdb3761f9d5a17a470fdf9d0a08185f7d952a7ccb685d2fcba97281e582ba8abe97e18f6db4ec2963c5ac64dc1da24021f5aaf86fa32083270b31685f831
data/README.md CHANGED
@@ -1,3 +1,4 @@
1
+ [![Gem Version](https://badge.fury.io/rb/audit_weasel.svg)](https://badge.fury.io/rb/audit_weasel)
1
2
  [![Code Climate](https://codeclimate.com/github/ryannealmes/audit_weasel/badges/gpa.svg)](https://codeclimate.com/github/ryannealmes/audit_weasel)
2
3
  [![Build Status](https://travis-ci.org/ryannealmes/audit_weasel.svg?branch=master)](https://travis-ci.org/ryannealmes/audit_weasel.svg)
3
4
  [![Test Coverage](https://codeclimate.com/github/ryannealmes/audit_weasel/badges/coverage.svg)](https://codeclimate.com/github/ryannealmes/audit_weasel/coverage)
data/Rakefile CHANGED
@@ -6,5 +6,5 @@ RSpec::Core::RakeTask.new(:spec)
6
6
  task default: :spec
7
7
 
8
8
  task :console do
9
- exec 'pry -r moodle -I ./lib'
9
+ exec 'pry -r audit_weasel -I ./lib'
10
10
  end
@@ -3,7 +3,7 @@
3
3
  module AuditWeasel
4
4
  MAJOR = 0
5
5
  MINOR = 0
6
- TINY = 1
6
+ TINY = 2
7
7
  PRE = nil
8
8
 
9
9
  VERSION = [MAJOR, MINOR, TINY, PRE].compact.join('.')
data/lib/audit_weasel.rb CHANGED
@@ -7,11 +7,11 @@ require 'audit_weasel/callbacks'
7
7
  require 'audit_weasel/request_registry'
8
8
  require 'audit_weasel/railtie' if defined?(Rails)
9
9
 
10
- begin
11
- require 'pry'
12
- rescue
13
- LoadError
14
- end
10
+ # begin
11
+ # require 'pry'
12
+ # rescue
13
+ # LoadError
14
+ # end
15
15
 
16
16
  # Load all functionality required by the gem
17
17
  module AuditWeasel
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: audit_weasel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan-Neal Mes