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 ADDED
@@ -0,0 +1,4 @@
1
+ source :rubygems
2
+
3
+ gem "bones"
4
+ gem "rspec"
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 => 'test:run'
9
- task 'gem:release' => 'test:run'
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'
@@ -65,3 +65,4 @@ Feature: play adventure
65
65
  When I enter "quit"
66
66
  Then the process should exit succesfully
67
67
 
68
+