Skip to content

Commit 465af42

Browse files
committed
Rename gem from fixturebot to fixturebot-rails
1 parent e479d3b commit 465af42

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
fixturebot (0.2.0)
4+
fixturebot-rails (0.2.0)
55
thor
66

77
GEM
@@ -219,7 +219,7 @@ PLATFORMS
219219

220220
DEPENDENCIES
221221
activerecord (>= 7.0)
222-
fixturebot!
222+
fixturebot-rails!
223223
irb
224224
rails (>= 7.0)
225225
rake (~> 13.0)
@@ -250,7 +250,7 @@ CHECKSUMS
250250
drb (2.2.3) sha256=0b00d6fdb50995fe4a45dea13663493c841112e4068656854646f418fda13373
251251
erb (6.0.1) sha256=28ecdd99c5472aebd5674d6061e3c6b0a45c049578b071e5a52c2a7f13c197e5
252252
erubi (1.13.1) sha256=a082103b0885dbc5ecf1172fede897f9ebdb745a4b97a5e8dc63953db1ee4ad9
253-
fixturebot (0.2.0)
253+
fixturebot-rails (0.2.0)
254254
globalid (1.3.0) sha256=05c639ad6eb4594522a0b07983022f04aa7254626ab69445a0e493aa3786ff11
255255
i18n (1.14.8) sha256=285778639134865c5e0f6269e0b818256017e8cde89993fdfcbfb64d088824a5
256256
io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ end
8282
Add to your Gemfile:
8383

8484
```ruby
85-
gem "fixturebot"
85+
gem "fixturebot-rails"
8686
```
8787

8888
### Rails generator
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
require_relative "lib/fixturebot/version"
44

55
Gem::Specification.new do |spec|
6-
spec.name = "fixturebot"
6+
spec.name = "fixturebot-rails"
77
spec.version = FixtureBot::VERSION
88
spec.authors = ["Brad Gessler"]
99
spec.email = ["bradgessler@gmail.com"]

spec/integration/rails_app_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def run_cmd!(cmd, chdir:)
2929
# Add fixturebot to Gemfile
3030
gemfile = File.join(@app_dir, "Gemfile")
3131
File.open(gemfile, "a") do |f|
32-
f.puts %(gem "fixturebot", path: "#{GEM_ROOT}", require: "fixturebot/rails")
32+
f.puts %(gem "fixturebot-rails", path: "#{GEM_ROOT}", require: "fixturebot/rails")
3333
end
3434

3535
# Bundle install

0 commit comments

Comments
 (0)