-
Notifications
You must be signed in to change notification settings - Fork 15
/
Gemfile
30 lines (24 loc) · 870 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
source 'https://rubygems.org'
gemspec
unless Dir[__dir__ + '/rspec{,-{core,expectations,mocks,support}}/upstream'].any?
raise 'Run: "git submodule update --init" to get RSpec sources'
end
# These need to come from our local path in order for create_requires.rb to work properly
gem 'rspec', path: 'rspec/upstream'
gem 'rspec-support', path: 'rspec-support/upstream'
gem 'rspec-core', path: 'rspec-core/upstream'
gem 'rspec-mocks', path: 'rspec-mocks/upstream'
gem 'rspec-expectations', path: 'rspec-expectations/upstream'
gem 'pry'
case ENV['OPAL_VERSION']
when 'local'
gem 'opal', path: '../opal'
when /^[0-9]/
gem 'opal', "~> #{ENV['OPAL_VERSION']}.0a"
when String
gem 'opal', git: 'https://github.com/opal/opal.git', branch: ENV['OPAL_VERSION']
end
gem 'opal-sprockets', '>=1.0'
gem 'puma'
gem 'rack', '<3'
gem 'base64'