dialect 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: a5ced1ec21d6bf788d642b1cd293bf1879833959
4
+ data.tar.gz: 91a8086f29df75ee2e58f31b419c5d25412bd207
5
+ SHA512:
6
+ metadata.gz: 8aa6882f2d7f8cd372ecc7e1dd21153d7949a6b6a207c124e9154d1c617e50b38270d40e233b0f745285697c00b102f36a00086d4393fc6a454c3af7d68c99ff
7
+ data.tar.gz: fc870a6d1273fe43e91c0a9dd2f1be8783f1906bb046821b4c33a08a8f8bab257b08046e1201a9f7a968f567510e8173a3835e5e7f21665328a630ffa8abf362
@@ -0,0 +1,19 @@
1
+ *.gem
2
+ *.rbc
3
+ .idea
4
+ .bundle
5
+ .config
6
+ .yardoc
7
+ .rubocop.yml
8
+ Gemfile.lock
9
+ InstalledFiles
10
+ _yardoc
11
+ coverage
12
+ doc/
13
+ lib/bundler/man
14
+ pkg
15
+ rdoc
16
+ spec/reports
17
+ test/tmp
18
+ test/version_tmp
19
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Jeff Nyman
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,29 @@
1
+ # Dialect
2
+
3
+ Dialect provides a semantic domain-specific language that can be used to construct a fluent interface for test execution libraries.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'dialect'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install dialect
18
+
19
+ ## Usage
20
+
21
+ Instructions on how to use Dialect will be coming soon.
22
+
23
+ ## Contributing
24
+
25
+ 1. [Fork the project](http://gun.io/blog/how-to-github-fork-branch-and-pull-request/).
26
+ 2. Create a feature branch. (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes. (`git commit -am 'new feature'`)
28
+ 4. Push the branch. (`git push origin my-new-feature`)
29
+ 5. Create a new [pull request](https://help.github.com/articles/using-pull-requests).
@@ -0,0 +1 @@
1
+ require 'bundler/gem_tasks'
@@ -0,0 +1,50 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'dialect/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'dialect'
8
+ spec.version = Dialect::VERSION
9
+ spec.authors = ['Jeff Nyman']
10
+ spec.email = ['jeffnyman@gmail.com']
11
+ spec.summary = %q{A Semantically Clean Fluent Interface Test Framework}
12
+ spec.description = %q{
13
+ Dialect is a framework that provides a way to describe your application
14
+ in terms of activity and page definitions. Those definitions can then be
15
+ referenced by test libraries using the DSL that Dialect provides.
16
+
17
+ The DSL provides a fluent interface that can be used for constructing
18
+ test execution logic. This fluent interface promotes the idea of
19
+ compressibility of your test logic, allowing for more factoring, more
20
+ reuse, and less repetition.
21
+
22
+ You can use Dialect directly as an automated testing solution or you can
23
+ use it with other tools such as RSpec, Cucumber, or my own Lucid tool.
24
+ }
25
+ spec.homepage = 'https://github.com/jnyman/dialect'
26
+ spec.license = 'MIT'
27
+ spec.platform = Gem::Platform::RUBY
28
+
29
+ spec.files = `git ls-files -z`.split("\x0")
30
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
31
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
32
+ spec.require_paths = %w(lib)
33
+
34
+ spec.required_ruby_version = '>= 1.9.3'
35
+ spec.required_rubygems_version = '>= 1.6.1'
36
+
37
+ spec.add_development_dependency 'bundler', '~> 1.5'
38
+ spec.add_development_dependency 'rake'
39
+
40
+ spec.add_runtime_dependency 'rspec', '>= 2.14'
41
+ spec.add_runtime_dependency 'watir-webdriver', '>= 0.6.8'
42
+
43
+ spec.post_install_message = %{
44
+ (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
45
+
46
+ Dialect #{Dialect::VERSION} has been installed.
47
+
48
+ (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
49
+ }
50
+ end
@@ -0,0 +1,4 @@
1
+ require 'dialect/version'
2
+
3
+ module Dialect
4
+ end
@@ -0,0 +1,3 @@
1
+ module Dialect
2
+ VERSION = '0.0.1'
3
+ end
metadata ADDED
@@ -0,0 +1,118 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dialect
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jeff Nyman
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-02-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.5'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
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: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '2.14'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '2.14'
55
+ - !ruby/object:Gem::Dependency
56
+ name: watir-webdriver
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: 0.6.8
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: 0.6.8
69
+ description: "\n Dialect is a framework that provides a way to describe your application\n
70
+ \ in terms of activity and page definitions. Those definitions can then be\n referenced
71
+ by test libraries using the DSL that Dialect provides.\n\n The DSL provides a
72
+ fluent interface that can be used for constructing\n test execution logic. This
73
+ fluent interface promotes the idea of\n compressibility of your test logic, allowing
74
+ for more factoring, more\n reuse, and less repetition.\n\n You can use Dialect
75
+ directly as an automated testing solution or you can\n use it with other tools
76
+ such as RSpec, Cucumber, or my own Lucid tool.\n "
77
+ email:
78
+ - jeffnyman@gmail.com
79
+ executables: []
80
+ extensions: []
81
+ extra_rdoc_files: []
82
+ files:
83
+ - .gitignore
84
+ - Gemfile
85
+ - LICENSE.txt
86
+ - README.md
87
+ - Rakefile
88
+ - dialect.gemspec
89
+ - lib/dialect.rb
90
+ - lib/dialect/version.rb
91
+ homepage: https://github.com/jnyman/dialect
92
+ licenses:
93
+ - MIT
94
+ metadata: {}
95
+ post_install_message: "\n(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)\n\n
96
+ \ Dialect 0.0.1 has been installed.\n\n(::) (::) (::) (::) (::) (::) (::) (::) (::)
97
+ (::) (::) (::)\n "
98
+ rdoc_options: []
99
+ require_paths:
100
+ - lib
101
+ required_ruby_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - '>='
104
+ - !ruby/object:Gem::Version
105
+ version: 1.9.3
106
+ required_rubygems_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - '>='
109
+ - !ruby/object:Gem::Version
110
+ version: 1.6.1
111
+ requirements: []
112
+ rubyforge_project:
113
+ rubygems_version: 2.1.11
114
+ signing_key:
115
+ specification_version: 4
116
+ summary: A Semantically Clean Fluent Interface Test Framework
117
+ test_files: []
118
+ has_rdoc: