mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
"There is a time when the operation of the machine becomes so odious, makes you so sick at heart, that you can't take part; you can't even passively take part, and you've got to put your bodies upon the gears and upon the wheels, upon the levers, upon all the apparatus, and you've got to make it stop. And you've got to indicate to the people who run it, to the people who own it, that unless you're free, the machine will be prevented from working at all." Mario Savio Sproul Hall Steps University of California, Berkeley December 3, 1964
73 lines
1.6 KiB
Ruby
73 lines
1.6 KiB
Ruby
source 'https://code.stripe.com'
|
|
source 'https://rubygems.org'
|
|
|
|
gem 'sinatra'
|
|
gem 'redis'
|
|
gem 'sequel', '4.8.0'
|
|
gem 'bcrypt'
|
|
gem 'sinatra-flash', require: 'sinatra/flash'
|
|
gem 'sinatra-xsendfile', require: 'sinatra/xsendfile'
|
|
gem 'puma', require: nil
|
|
gem 'rack-recaptcha', require: 'rack/recaptcha'
|
|
gem 'rmagick', require: nil
|
|
gem 'sidekiq'
|
|
gem 'ago'
|
|
gem 'mail'
|
|
gem 'google-api-client', require: 'google/api_client'
|
|
gem 'tilt'
|
|
gem 'erubis'
|
|
gem 'stripe'
|
|
gem 'screencap'
|
|
gem 'cocaine'
|
|
gem 'zipruby'
|
|
gem 'sass', require: nil
|
|
gem 'dav4rack'
|
|
gem 'filesize'
|
|
gem 'thread'
|
|
gem 'scrypt'
|
|
|
|
platform :mri do
|
|
gem 'magic' # sudo apt-get install file, For OSX: brew install libmagic
|
|
gem 'pg'
|
|
gem 'sequel_pg', require: nil
|
|
gem 'hiredis'
|
|
gem 'rainbows', require: nil
|
|
|
|
group :development, :test do
|
|
gem 'pry'
|
|
gem 'pry-byebug'
|
|
end
|
|
end
|
|
|
|
platform :jruby do
|
|
gem 'jruby-openssl'
|
|
gem 'json'
|
|
gem 'jdbc-postgres'
|
|
|
|
group :development do
|
|
gem 'ruby-debug', require: nil
|
|
end
|
|
end
|
|
|
|
group :development do
|
|
gem 'shotgun', require: nil
|
|
end
|
|
|
|
group :test do
|
|
gem 'faker'
|
|
gem 'fabrication', require: 'fabrication'
|
|
gem 'minitest'
|
|
gem 'minitest-reporters', require: 'minitest/reporters'
|
|
gem 'rack-test', require: 'rack/test'
|
|
gem 'mocha', require: nil
|
|
gem 'rake', require: nil
|
|
gem 'poltergeist'
|
|
gem 'phantomjs', require: 'phantomjs/poltergeist'
|
|
gem 'capybara_minitest_spec'
|
|
gem 'rack_session_access', require: nil
|
|
gem 'webmock', require: nil
|
|
|
|
platform :mri do
|
|
gem 'simplecov', require: nil
|
|
end
|
|
end
|