mirror of
https://github.com/danbee/mpd-client
synced 2025-03-04 08:39:09 +00:00
31 lines
481 B
Ruby
31 lines
481 B
Ruby
source 'https://rubygems.org'
|
|
|
|
ruby '2.0.0'
|
|
|
|
# todo: get everything working before going whole hog with the gem
|
|
# gemspec
|
|
|
|
gem 'sinatra'
|
|
gem 'sinatra-contrib'
|
|
gem 'sinatra-asset-pipeline'
|
|
gem 'foreman'
|
|
gem 'ruby-mpd', git: 'git@github.com:archSeer/ruby-mpd.git'
|
|
gem 'active_support', require: false
|
|
|
|
group :development, :test do
|
|
gem 'pry'
|
|
end
|
|
|
|
group :test do
|
|
gem 'rspec'
|
|
gem 'rspec-mocks'
|
|
end
|
|
|
|
group :development do
|
|
gem 'shotgun'
|
|
end
|
|
|
|
group :production do
|
|
gem 'thin'
|
|
end
|