lib/ncmb/device.rb in ncmb-ruby-client-0.1.3 vs lib/ncmb/device.rb in ncmb-ruby-client-0.1.4
- old
+ new
@@ -1,13 +1,15 @@
+# frozen_string_literal: true
+
module NCMB
class Devise < NCMB::DataStore
attr_accessor :client, :name
def initialize(client)
@client = client
@name = "Instration"
end
def push
- return NCMB::Push.new(client
+ return NCMB::Push.new(client)
end
end
end