-
Notifications
You must be signed in to change notification settings - Fork 78
/
xray-rails.gemspec
26 lines (21 loc) · 965 Bytes
/
xray-rails.gemspec
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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/xray/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = "xray-rails"
gem.authors = ["Brent Dillingham"]
gem.email = ["[email protected]"]
gem.summary = %q{Reveal the structure of your UI}
gem.description = %q{Provides a dev bar and an overlay in-browser to visualize your UI's rendered partials}
gem.homepage = "https://github.com/brentd/xray-rails"
gem.files = Dir['{app,lib}/**/*'] + ['LICENSE', 'README.md']
gem.require_paths = ["lib"]
gem.version = Xray::VERSION
gem.license = 'MIT'
gem.add_dependency 'rails', '>= 3.1.0'
gem.add_development_dependency 'rspec-rails'
# Required for the dummy Rails app in spec/dummy
gem.add_development_dependency 'sqlite3'
gem.add_development_dependency 'jquery-rails'
gem.add_development_dependency 'haml'
gem.add_development_dependency 'capybara'
end