capybara-angular-material 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 28eb83e11029b79443bc73936ebde2950da21f29
4
+ data.tar.gz: bdd62fa38b730ab51df40fbf7f31e9cc21e3edf3
5
+ SHA512:
6
+ metadata.gz: 19ed0c9d113bd04a4b3551dbac32c95e20cb66244acc486468634abf628a3aab863519bdd47681ef2a152c0c83967cfb9dda835d8921363b017e6da2143c5d43
7
+ data.tar.gz: 9829d8efc07bbc8ef5f556cb860a4a595f2d5093746e61b2492caae8c560b466d1ab97ef822e2d873ed2bee8a118dd06be0a339f35422e1574b505dae2f44792
@@ -0,0 +1,5 @@
1
+ .DS_Store
2
+ .rvmrc
3
+ .ruby-version
4
+ .ruby-gemset
5
+ .bundle
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'bundler', '~> 1.1'
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Rimian Perkins
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
@@ -0,0 +1,9 @@
1
+ # Capybara Selectors for Angular Material
2
+
3
+ ![Build Status](https://circleci.com/gh/rimian/capybara-angular-material.png?style=shield&circle-token=f2873eb8a682807f1581927204052742bf8ecd94 "Build Status")
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'capybara-angular-material'
@@ -0,0 +1,18 @@
1
+ Gem::Specification.new do |gem|
2
+ gem.name = 'capybara-angular-material'
3
+ gem.version = '0.0.1'
4
+ gem.license = 'MIT'
5
+
6
+ gem.authors = ['Rimian Perkins']
7
+ gem.email = ['hello@rimian.com.au']
8
+ gem.summary = 'Capybara DSL for Angular Material'
9
+
10
+ gem.homepage = 'https://github.com/rimian/capybara-angular-material'
11
+
12
+ gem.files = `git ls-files`.split($ORS) - ['Gemfile.lock']
13
+ gem.require_paths = %w(spec)
14
+
15
+ gem.add_development_dependency('rspec')
16
+ gem.add_development_dependency('capybara')
17
+ gem.add_development_dependency('poltergeist')
18
+ end
@@ -0,0 +1,7 @@
1
+ require 'spec_helper'
2
+
3
+ feature 'Angular Material' do
4
+ scenario 'It works!' do
5
+ expect(true).to eq true
6
+ end
7
+ end
@@ -0,0 +1,9 @@
1
+ require 'rack'
2
+ require 'capybara'
3
+ require 'capybara/rspec'
4
+ require 'capybara/poltergeist'
5
+
6
+ RSpec.configure do |config|
7
+ config.order = :random
8
+ Capybara.default_driver = :poltergeist
9
+ end
metadata ADDED
@@ -0,0 +1,93 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: capybara-angular-material
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Rimian Perkins
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-09-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rspec
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: capybara
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: poltergeist
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description:
56
+ email:
57
+ - hello@rimian.com.au
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - Gemfile
64
+ - LICENSE
65
+ - README.md
66
+ - capybara-angular-material.gemspec
67
+ - spec/features/angular_material_spec.rb
68
+ - spec/spec_helper.rb
69
+ homepage: https://github.com/rimian/capybara-angular-material
70
+ licenses:
71
+ - MIT
72
+ metadata: {}
73
+ post_install_message:
74
+ rdoc_options: []
75
+ require_paths:
76
+ - spec
77
+ required_ruby_version: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ required_rubygems_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ requirements: []
88
+ rubyforge_project:
89
+ rubygems_version: 2.4.5
90
+ signing_key:
91
+ specification_version: 4
92
+ summary: Capybara DSL for Angular Material
93
+ test_files: []