lib/grumlin/features/neptune_features.rb in grumlin-0.23.0 vs lib/grumlin/features/neptune_features.rb in grumlin-1.0.0.rc1

- old
+ new

@@ -1,13 +1,9 @@ # frozen_string_literal: true -module Grumlin - module Features - class NeptuneFeatures < FeatureList - def initialize - super - @user_supplied_ids = true - @supports_transactions = true - end - end +class Grumlin::Features::NeptuneFeatures < Grumlin::Features::FeatureList + def initialize + super + @user_supplied_ids = true + @supports_transactions = true end end