forked from codevise/pageflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
24 lines (15 loc) · 830 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
source "https://rubygems.org"
gemspec
require File.expand_path('spec/support/pageflow/rails_version', File.dirname(__FILE__))
gem 'rails', Pageflow::RailsVersion.detect
gem 'pageflow-support', path: 'spec/support'
gem 'state_machine', git: 'https://github.com/codevise/state_machine.git', branch: 'master'
# Ensure that teaspoon is required via Bundler.require inside the
# dummy app. Otherwise teaspoon fails to initialize correctly.
gem 'teaspoon-mocha', git: 'https://github.com/codevise/teaspoon', branch: 'pageflow'
gem 'spring-commands-rspec', group: :development
gem 'spring-commands-teaspoon', group: :development
gem 'pageflow-theme-doc-publisher', git: 'https://github.com/tf/pageflow-theme-doc-publisher'
gem 'coveralls', require: false
# Early failure output
gem 'rspec-instafail', '~> 0.4.0', require: false