$:.push File.expand_path("lib", __dir__) # Maintain your gem's version: require "pixpalace/version" # Describe your gem and declare its dependencies: Gem::Specification.new do |spec| spec.name = "pixpalace" spec.version = Pixpalace::VERSION spec.authors = ["Suttipong W."] spec.email = ["safe@nuxos.asia"] spec.homepage = "http://pixpalace.com" spec.summary = "Summary of Pixpalace." spec.description = "Description of Pixpalace." spec.license = "MIT" # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. if spec.respond_to?(:metadata) spec.metadata["allowed_push_host"] = "Set to 'http://mygemserver.com'" else raise "RubyGems 2.0 or newer is required to protect against " \ "public gem pushes." end spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"] spec.add_dependency "rails", "~> 6.0.0" spec.add_development_dependency "sqlite3" end