Sha256: 5487d1a183cea07370d5e9f98f9a2f02273c7f127518f7ed2cd869956e22abed

Contents?: true

Size: 1.15 KB

Versions: 2

Compression:

Stored size: 1.15 KB

Contents

source "http://rubygems.org"

gem 'sinatra', '~> 1.4', require: 'sinatra/base'
gem 'coffee-script', '~> 2.2'

=begin

Now here we get into an issue. I am using Guard BIG TIME.
That means that Sass above this version will puke out because
the Sass authors wisely decided to burden me with having a version
of 'listen' even though I never use their watching features.

According to this:
https://rubygems.org/api/v1/dependencies?gems=sass
the last version of SASS which does not have a "listen" dependency
is '3.3.0.alpha.136', so this is what we are going to depend on
until at least this issue is resolved

https://github.com/nex3/sass/pull/982

Better still, SASS authors should remove filesystem watching or implement
it in a portable/vendored manner.
=end
gem 'sass', git: 'https://github.com/nex3/sass.git', branch: 'master'
gem 'rack-contrib'
gem 'rack-livereload'

# Add dependencies to develop your gem here.
# Include everything needed to run rake, tests, features, etc.
group :development do
  gem 'guard', '~> 2.2'
  gem 'guard-livereload'
  gem 'guard-test'
  
  gem "rdoc", "~> 3.12"
  gem "jeweler", "~> 1.8.7"
  gem 'rack-test'
  gem 'minitest'
  gem 'pry'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vitrine-0.0.24 Gemfile
vitrine-0.0.23 Gemfile