Skip to content

Commit

Permalink
Converted to an engine and renamed with -
Browse files Browse the repository at this point in the history
  • Loading branch information
mariochavez committed Jan 15, 2025
1 parent 3b8ea4b commit 0769ecd
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 21 deletions.
20 changes: 3 additions & 17 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
maquina_components (0.1.0)
maquina-components (0.1.0)
rails (>= 8.0.0)

GEM
Expand Down Expand Up @@ -121,22 +121,8 @@ GEM
timeout
net-smtp (0.5.0)
nio4r (2.7.4)
nokogiri (1.18.1-aarch64-linux-gnu)
racc (~> 1.4)
nokogiri (1.18.1-aarch64-linux-musl)
racc (~> 1.4)
nokogiri (1.18.1-arm-linux-gnu)
racc (~> 1.4)
nokogiri (1.18.1-arm-linux-musl)
racc (~> 1.4)
nokogiri (1.18.1-arm64-darwin)
racc (~> 1.4)
nokogiri (1.18.1-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.18.1-x86_64-linux-gnu)
racc (~> 1.4)
nokogiri (1.18.1-x86_64-linux-musl)
racc (~> 1.4)
parallel (1.26.3)
parser (3.3.6.0)
ast (~> 2.4.1)
Expand Down Expand Up @@ -255,10 +241,10 @@ PLATFORMS
x86_64-linux-musl

DEPENDENCIES
maquina_components!
maquina-components!
puma
sqlite3
standard

BUNDLED WITH
2.6.0.dev
2.6.2
2 changes: 1 addition & 1 deletion lib/maquina_components.rb → lib/maquina-components.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
require "maquina_components/version"
require "maquina_components/railtie"
require "maquina_components/engine"

module MaquinaComponents
# Your code goes here...
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module MaquinaComponents
class Railtie < ::Rails::Railtie
class Engine < ::Rails::Engine
end
end
2 changes: 1 addition & 1 deletion lib/maquina_components/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module MaquinaComponents
VERSION = "0.1.0"
VERSION = "0.1.1"
end
2 changes: 1 addition & 1 deletion maquina_components.gemspec → maquina-components.gemspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require_relative "lib/maquina_components/version"

Gem::Specification.new do |spec|
spec.name = "maquina_components"
spec.name = "maquina-components"
spec.version = MaquinaComponents::VERSION
spec.authors = ["Mario Alberto Chávez"]
spec.email = ["mario.chavez@gmail.com"]
Expand Down

0 comments on commit 0769ecd

Please sign in to comment.