forked from shakacode/cypress-playwright-on-rails
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcypress-on-rails.gemspec
22 lines (21 loc) · 968 Bytes
/
cypress-on-rails.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
require "cypress_dev/version"
Gem::Specification.new do |s|
s.name = "cypress-on-rails"
s.version = CypressDev::VERSION
s.author = ["miceportal team", 'Grant Petersen-Speelman']
s.email = ["[email protected]", '[email protected]']
s.homepage = "http://github.com/grantspeelman/cypress-on-rails"
s.summary = "Integrates cypress with rails or rack applications"
s.description = "Integrates cypress with rails or rack applications"
s.rubyforge_project = s.name
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency 'rack'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
s.add_development_dependency 'railties', '>= 3.2'
end