sniffed 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 503b87faddc49e0575ec85168d54ea930586091984e6a0a80b1698132527195d
4
- data.tar.gz: 18dad42d0d0d2d57e4e7b79a333861dcdf97124aaf4dc4964f5ffba21287c376
3
+ metadata.gz: c0e48dfed1b8fda2e44c593ebe4a98ff44e8eaa8a1dfbaeb78144d83aab60606
4
+ data.tar.gz: e23175401380747803823fbf0141dd64abcb85b142efeebc8a2b59ab8687957d
5
5
  SHA512:
6
- metadata.gz: d5a9cfb3ddf6323b352e7301cc6de9408e0332b0ccad7262ce3a9c397aae345c693b55ea741cf6d712e34a962f711873b419b48280998e907fd3f6230e6c26f0
7
- data.tar.gz: 1f95188a26677bb1d3236e6bf12b5e873ee7486897c2044490f7a65f0d95e35d9edd83f8556364eedfafd380d2436f952d326f1eadb321c61776ef3b3ccd59b1
6
+ metadata.gz: 383aa862586c9111613e54d8751b39e8bdfa3d364a5d9732e634b56e4c227a67f587a99ab537cbcdf01188e1d0e66699ac3db7a37841c517b72bdeebe1484b58
7
+ data.tar.gz: 5c58f9faf3be9c6f04db2085063365775cca5fb08341ca590a94149da0f88f5d3c457da12e8b89452585b54bd230903690032b5a0c1291ad3d375c3fcc617ec2
@@ -0,0 +1 @@
1
+ * joaopfernandesc
@@ -0,0 +1,23 @@
1
+ name: Main
2
+
3
+ on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - main
8
+
9
+ jobs:
10
+ rspec:
11
+ name: RSpec
12
+ runs-on: ubuntu-20.04
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - name: Install Ruby and gems
16
+ uses: ruby/setup-ruby@v1
17
+ with:
18
+ ruby-version: 2.6
19
+ bundler-cache: true
20
+ - name: Testing
21
+ run: |
22
+ bundle exec rspec
23
+
data/README.md CHANGED
@@ -15,7 +15,7 @@ end
15
15
  Depending on your logic, it may make sense. And one day, you suddenly wake up needing to use `saved_changes`, but then...:
16
16
  ```ruby
17
17
  dog.saved_changes
18
- # => { 'last_name' => ['Doe', 'The Dog'] }
18
+ # => { 'last_name' => ['The Crazy', 'The Dog'] }
19
19
  ```
20
20
 
21
21
  Yep, you've lost track of the `first_name` changes. Sad, isn't it? But wait! I have a solution
@@ -43,7 +43,7 @@ Or install it yourself as:
43
43
  Just add `sniffed` to the model you want to keep track of those changes and then starting using like:
44
44
 
45
45
  ```ruby
46
- dog.commited_changes # if you are all serious
46
+ dog.commited_changes
47
47
  # => { 'first_name' => ['Jujuba', 'Sif'], 'last_name' => ['The Crazy', 'The Dog'] }
48
48
  ```
49
49
 
@@ -61,7 +61,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
61
61
 
62
62
  ## Contributing
63
63
 
64
- Bug reports and pull requests are welcome on GitHub at https://github.com/joaopfernandesc/sniffed. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/joaopfernandesc/sniffed/blob/master/CODE_OF_CONDUCT.md).
64
+ Bug reports and pull requests are welcome on GitHub at https://github.com/sifthedog/sniffed. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/sifthedog/sniffed/blob/master/CODE_OF_CONDUCT.md).
65
65
 
66
66
  ## License
67
67
 
@@ -69,4 +69,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
69
69
 
70
70
  ## Code of Conduct
71
71
 
72
- Everyone interacting in the Sniffed project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/joaopfernandesc/sniffed/blob/master/CODE_OF_CONDUCT.md).
72
+ Everyone interacting in the Sniffed project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/sifthedog/sniffed/blob/master/CODE_OF_CONDUCT.md).
@@ -25,13 +25,9 @@ module Sniffed
25
25
  private
26
26
 
27
27
  def track_commited_changes
28
- previous_changes.each_pair(&testing)
29
28
  previous_changes.each_pair(&track_commited_change)
30
29
  end
31
30
 
32
- def testing
33
- end
34
-
35
31
  def track_commited_change
36
32
  lambda do |(attribute, (previous_value, current_value))|
37
33
  if @unfiltered_commited_changes.key?(attribute)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Sniffed
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sniffed
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
  - João Fernandes
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2021-08-15 00:00:00.000000000 Z
12
+ date: 2021-10-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activerecord
@@ -108,6 +108,8 @@ executables: []
108
108
  extensions: []
109
109
  extra_rdoc_files: []
110
110
  files:
111
+ - ".github/CODEOWNERS"
112
+ - ".github/workflows/main.yml"
111
113
  - ".gitignore"
112
114
  - ".rspec"
113
115
  - ".rubocop.yml"
@@ -145,7 +147,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
145
147
  - !ruby/object:Gem::Version
146
148
  version: '0'
147
149
  requirements: []
148
- rubygems_version: 3.2.22
150
+ rubygems_version: 3.0.3.1
149
151
  signing_key:
150
152
  specification_version: 4
151
153
  summary: Keeps track of multiple changes made in a transaction.