Compare commits

...

2 Commits

Author SHA1 Message Date
David Heinemeier Hansson
c23928348b Bump version for 0.3.1 2023-01-27 17:04:52 +01:00
David Heinemeier Hansson
979b7d80ba Need the command, not config 2023-01-27 16:57:02 +01:00
3 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
PATH PATH
remote: . remote: .
specs: specs:
mrsk (0.3.0) mrsk (0.3.1)
activesupport (>= 7.0) activesupport (>= 7.0)
sshkit (~> 1.21) sshkit (~> 1.21)
thor (~> 1.2) thor (~> 1.2)

View File

@@ -74,7 +74,7 @@ class Mrsk::Commander
end end
def accessory(name) def accessory(name)
config.accessories.detect { |a| a.name == name } Mrsk::Commands::Accessory.new(config, name: name)
end end

View File

@@ -1,3 +1,3 @@
module Mrsk module Mrsk
VERSION = "0.3.0" VERSION = "0.3.1"
end end