A minimal Ruby client of Bluesky/ATProto API
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

fixed method_missing setter on User

+1 -1
+1 -1
lib/minisky/requests.rb
··· 18 18 end 19 19 20 20 def method_missing(name, *args) 21 - if name.end_with?('=') 21 + if name.to_s.end_with?('=') 22 22 @config[name.to_s.chop] = args[0] 23 23 else 24 24 @config[name.to_s]