Gem::Specification.new do |s| s.name = 'shopapp' # Version for Rails 7 / Ruby 3 start with 0.74 s.version = '0.76.05' s.date = '2024-07-12' s.summary = 'Do a shoplift.' s.description = 'Ha! Art thou Bedlam? Dost thou thirst base Trojan, to have me fold up Parca\'s fatal web? Hence!\ I am qualmish at the smell of leek.' s.author = 'Zeljko' s.email = 'zeljko@z-ware.fi' s.files = `git ls-files`.split("\n") - %w(.rvmrc .gitignore) s.bindir = 'bin' # s.executables << 'shopitapp' s.executables << 'shop' s.homepage = 'http://rubygems.org/gems/shopapp' s.license = 'MIT' s.require_paths = ["lib"] # Dependences # s.add_dependency 'railties', '>= 5.2' s.add_dependency 'haml-rails' s.add_dependency 'jquery-rails' s.add_dependency "sassc-rails" # the following two must be in app Gemfile, for now. # s.add_dependency 'bootstrap', '~> 4.1' # s.add_dependency 'bootstrap_form', '~> 4.0' # s.add_dependency 'font-awesome-rails', '~> 4.7' # will_paginate 4.0.0 is broken, so do not include it. # bootstrap-will_paginate has open dependency so this needs to be # explicitelly limited by us s.add_dependency 'will_paginate', '~> 3.1' s.add_dependency 'bootstrap-will_paginate', '~> 1.0' s.add_dependency 'pry-rails' s.add_dependency 'oauth2', '~> 1.4' s.add_dependency 'rest-client', '~> 2.0' s.add_dependency 'gravatar_image_tag', '~> 1.2' s.add_dependency 'redcarpet', '~> 3.4' s.add_dependency 'audited' s.add_dependency 'sprockets-rails' s.add_dependency 'material_icons' # s.add_dependency 'capistrano', '~> 3.11' # s.add_dependency 'capistrano-rvm', '~> 0' # s.add_dependency 'capistrano-rails', '~> 1.2' # s.add_dependency 'capistrano-passenger', '~> 0.2.0' s.add_dependency 'aws-sdk-rails', '~> 3' # following are only needed on OSX, but do not matter to others # s.add_dependency 'ed25519', '~> 1.2' # s.add_dependency 'bcrypt_pbkdf', '~> 1.0' # following are helping with installation dependences # s.add_dependency 'rb-readline', '~> 0.5' end