Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Unreleased Changes
------------------

* Issue - Remove the `Rails` namespace from this gem, and place `VERSION` on the Railtie.

0.1.0 (2024-11-16)
------------------

Expand Down
10 changes: 4 additions & 6 deletions lib/aws-record-rails.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,12 @@

module Aws
module Record
module Rails
# Rails tasks for Aws::Record
class Railtie < ::Rails::Railtie
VERSION = File.read(File.expand_path('../VERSION', __dir__)).strip

# @api private
class Railtie < ::Rails::Railtie
rake_tasks do
load 'tasks/aws_record/migrate.rake'
end
rake_tasks do
load 'tasks/aws_record/migrate.rake'
end
end
end
Expand Down