ruby-x.github.io/Gemfile

49 lines
925 B
Ruby
Raw Normal View History

2014-05-26 21:05:33 +02:00
source 'https://rubygems.org'
2022-11-13 21:32:22 +01:00
ruby '2.7.6'
2022-04-10 13:32:59 +02:00
2022-11-18 21:41:02 +01:00
gem 'rails' , "~> 5.2"
2022-11-13 21:32:22 +01:00
2014-05-26 21:05:33 +02:00
2018-04-10 17:39:03 +02:00
gem 'sass-rails'
gem 'uglifier'
gem "haml-rails"
gem "susy" , "2.2.12"
2018-04-10 17:25:46 +02:00
2018-04-10 17:42:22 +02:00
gem 'high_voltage'
2018-04-16 19:36:16 +02:00
2018-04-16 19:54:22 +02:00
gem 'opal', '~> 0.11.0'
gem 'opal-rails'
gem 'opal-jquery'
2018-04-16 19:54:22 +02:00
gem 'opal-browser' , "0.2.0"
2023-01-15 11:52:28 +01:00
gem "rubyx" , "0.6" , git: "https://github.com/ruby-x/rubyx" , require: false
gem "rubyx-debugger" , "0.3" , git: "https://github.com/ruby-x/rubyx-debugger" , require: false
gem "rx-file" , git: "https://github.com/ruby-x/rx-file"
2018-04-16 19:36:16 +02:00
2018-08-20 08:42:22 +02:00
gem "haml-coderay"
2019-07-19 19:12:59 +02:00
gem 'mini_racer'
2018-08-20 08:42:22 +02:00
2022-11-13 21:32:22 +01:00
group :production do
gem "passenger" , "6.0.15"
end
2018-04-10 17:25:46 +02:00
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
2018-04-10 17:42:22 +02:00
gem 'rspec-rails'
2022-11-13 21:32:22 +01:00
gem "puma"
2018-04-10 17:42:22 +02:00
end
group :test do
gem 'capybara'
gem 'capybara-screenshot'
2018-04-10 17:25:46 +02:00
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
2018-04-22 12:11:57 +02:00
2022-04-10 13:32:59 +02:00
gem "mina"
2018-04-10 17:25:46 +02:00
end