greenletters 0.1.0 → 0.2.0
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.
- data/Gemfile +4 -0
- data/Gemfile.lock +26 -0
- data/Rakefile +6 -3
- data/examples/cucumber/adventure.feature +1 -0
- data/examples/cucumber/greenletters.log +220 -205
- data/examples/cucumber/support/env.rb +1 -0
- data/examples/greenletters.log +266 -0
- data/greenletters.gemspec +33 -0
- data/lib/greenletters/cucumber_steps.rb +21 -6
- data/lib/greenletters.rb +33 -16
- data/spec/greenletters_spec.rb +0 -1
- data/spec/spec_helper.rb +2 -13
- data/version.txt +1 -1
- metadata +44 -54
- data/test/test_greenletters.rb +0 -0
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
GEM
|
|
2
|
+
remote: http://rubygems.org/
|
|
3
|
+
specs:
|
|
4
|
+
bones (3.8.0)
|
|
5
|
+
little-plugger (~> 1.1.3)
|
|
6
|
+
loquacious (~> 1.9.1)
|
|
7
|
+
rake (>= 0.8.7)
|
|
8
|
+
diff-lcs (1.1.3)
|
|
9
|
+
little-plugger (1.1.3)
|
|
10
|
+
loquacious (1.9.1)
|
|
11
|
+
rake (0.9.2.2)
|
|
12
|
+
rspec (2.10.0)
|
|
13
|
+
rspec-core (~> 2.10.0)
|
|
14
|
+
rspec-expectations (~> 2.10.0)
|
|
15
|
+
rspec-mocks (~> 2.10.0)
|
|
16
|
+
rspec-core (2.10.1)
|
|
17
|
+
rspec-expectations (2.10.0)
|
|
18
|
+
diff-lcs (~> 1.1.3)
|
|
19
|
+
rspec-mocks (2.10.1)
|
|
20
|
+
|
|
21
|
+
PLATFORMS
|
|
22
|
+
ruby
|
|
23
|
+
|
|
24
|
+
DEPENDENCIES
|
|
25
|
+
bones
|
|
26
|
+
rspec
|
data/Rakefile
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
|
-
|
|
2
1
|
begin
|
|
3
2
|
require 'bones'
|
|
4
3
|
rescue LoadError
|
|
5
4
|
abort '### Please install the "bones" gem ###'
|
|
6
5
|
end
|
|
7
6
|
|
|
8
|
-
task :default
|
|
9
|
-
|
|
7
|
+
task :default do
|
|
8
|
+
sh "bundle exec rspec spec"
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
task 'gem:release' => :default
|
|
10
12
|
|
|
11
13
|
Bones {
|
|
12
14
|
name 'greenletters'
|
|
@@ -14,6 +16,7 @@ Bones {
|
|
|
14
16
|
email 'avdi@avdi.org'
|
|
15
17
|
url 'http://github.com/avdi/greenletters'
|
|
16
18
|
ignore_file '.gitignore'
|
|
19
|
+
ignore_file '.idea'
|
|
17
20
|
readme_file 'README.org'
|
|
18
21
|
|
|
19
22
|
summary 'A Ruby console automation framework a la Expect'
|