Skip to content

Commit 87cc4e9

Browse files
authored
Merge pull request #7 from irphilli/chore/update-ownership
chore: move ownership to irphilli
2 parents ea91074 + e0e6f5a commit 87cc4e9

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/ruby-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Specs - Ruby ${{ matrix.ruby-version }} ${{matrix.gemfile}}
1313
runs-on: ubuntu-latest
1414
env:
15-
CC_TEST_REPORTER_ID: 832977443789ffff9eb3c342049fdb5ce76f5333f1e1efc34481eb4d5332b839
15+
CC_TEST_REPORTER_ID: 5e30c12a37d6500cfc4d084d0caafc530c404cbc3782c36207f420c3de1321ac
1616
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
1717
COVERAGE: true
1818

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 Phil Phillips
3+
Copyright (c) 2024 Phil Phillips
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# ActiveRecord::BatchTouching
22
[![Gem Version](https://badge.fury.io/rb/activerecord-batch_touching.svg)](http://badge.fury.io/rb/activerecord-batch_touching)
3-
[![Build Status](https://github.com/ProductPlan/activerecord-batch_touching/actions/workflows/ruby-tests.yml/badge.svg?branch=main)](https://github.com/ProductPlan/activerecord-batch_touching/actions)
4-
[![Maintainability](https://api.codeclimate.com/v1/badges/4aa3ff57a349f0cdff95/maintainability)](https://codeclimate.com/github/ProductPlan/activerecord-batch_touching/maintainability)
5-
[![Test Coverage](https://api.codeclimate.com/v1/badges/4aa3ff57a349f0cdff95/test_coverage)](https://codeclimate.com/github/ProductPlan/activerecord-batch_touching/test_coverage)
3+
[![Build Status](https://github.com/irphilli/activerecord-batch_touching/actions/workflows/ruby-tests.yml/badge.svg?branch=main)](https://github.com/irphilli/activerecord-batch_touching/actions)
4+
[![Maintainability](https://api.codeclimate.com/v1/badges/decb339d5e259910c8f4/maintainability)](https://codeclimate.com/github/irphilli/activerecord-batch_touching/maintainability)
5+
[![Test Coverage](https://api.codeclimate.com/v1/badges/decb339d5e259910c8f4/test_coverage)](https://codeclimate.com/github/irphilli/activerecord-batch_touching/test_coverage)
66

77
Batch up your ActiveRecord "touch" operations for better performance.
88

@@ -128,7 +128,7 @@ It keeps doing this until there are no more touches, or until the sun swallows u
128128

129129
## Contributing
130130

131-
1. Fork it ( [https://github.com/ProductPlan/activerecord-batch_touching/fork](https://github.com/ProductPlan/activerecord-batch_touching/fork) )
131+
1. Fork it ( [https://github.com/irphilli/activerecord-batch_touching/fork](https://github.com/ProductPlan/activerecord-batch_touching/fork) )
132132
2. Create your feature branch (`git checkout -b my-new-feature`)
133133
3. Commit your changes (`git commit -am 'Add some feature'`)
134134
4. Push to the branch (`git push origin my-new-feature`)

activerecord-batch_touching.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ Gem::Specification.new do |spec|
88
spec.name = "activerecord-batch_touching"
99
spec.version = Activerecord::BatchTouching::VERSION
1010
spec.authors = ["Brian Morearty", "Phil Phillips"]
11-
spec.email = ["phil@productplan.com"]
11+
spec.email = ["irving.phillips@gmail.com"]
1212
spec.summary = 'Batch up your ActiveRecord "touch" operations for better performance.'
1313
spec.description = 'Batch up your ActiveRecord "touch" operations for better performance. All accumulated "touch" calls will be consolidated into as few database round trips as possible.'
14-
spec.homepage = "https://github.com/ProductPlan/activerecord-batch_touching"
14+
spec.homepage = "https://github.com/irphilli/activerecord-batch_touching"
1515
spec.license = "MIT"
1616

1717
spec.files = Dir["LICENSE", "README", "lib/**/*"]
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
2929
spec.add_development_dependency "rubocop-rspec"
3030
spec.add_development_dependency "simplecov"
3131
spec.add_development_dependency "simplecov-rcov"
32-
spec.add_development_dependency "sqlite3"
32+
spec.add_development_dependency "sqlite3", "~> 1.4"
3333
spec.add_development_dependency "timecop"
3434

3535
spec.metadata["rubygems_mfa_required"] = "true"

0 commit comments

Comments
 (0)