Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
marianogabriels committed Aug 10, 2013
0 parents commit 28548ab
Show file tree
Hide file tree
Showing 7 changed files with 94 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.idea/
.DS_Store
.svn
*~
.*.swp
!.gitignore
.ruby-gemset
.ruby-version
5 changes: 5 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source "https://rubygems.org"

gem 'rspec'
gem 'cucumber'
gem 'gherkin'
31 changes: 31 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
GEM
remote: https://rubygems.org/
specs:
builder (3.2.2)
cucumber (1.3.6)
builder (>= 2.1.2)
diff-lcs (>= 1.1.3)
gherkin (~> 2.12.0)
multi_json (~> 1.7.5)
multi_test (>= 0.0.2)
diff-lcs (1.2.4)
gherkin (2.12.0)
multi_json (~> 1.3)
multi_json (1.7.8)
multi_test (0.0.2)
rspec (2.14.1)
rspec-core (~> 2.14.0)
rspec-expectations (~> 2.14.0)
rspec-mocks (~> 2.14.0)
rspec-core (2.14.4)
rspec-expectations (2.14.1)
diff-lcs (>= 1.1.3, < 2.0)
rspec-mocks (2.14.3)

PLATFORMS
ruby

DEPENDENCIES
cucumber
gherkin
rspec
3 changes: 3 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
desk "generar kata rake generate:Foo_name (todo)"
task :generate do
end
36 changes: 36 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
TDD RosarioRb
----------------
tdd/bdd

Instalar
========


Bundle install

run test

rspec spec/example_spec.rb

cucumber features/example.feature

Cucumber (todo)
========

I18n Internacionalizacion

"es": {
"name": "Spanish",
"native": "español",
"background": "Antecedentes",
"feature": "Característica",
"scenario": "Escenario",
"scenario_outline": "Esquema del escenario",
"examples": "Ejemplos",
"given": "*|Dado|Dada|Dados|Dadas",
"when": "*|Cuando",
"then": "*|Entonces",
"and": "*|Y",
"but": "*|Pero"


5 changes: 5 additions & 0 deletions katas/example.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module Example
def self.working?
true
end
end
6 changes: 6 additions & 0 deletions spec/example_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
require_relative '../katas/example'
require 'rspec'

describe Example do
it { Example.working?.should be_true }
end

0 comments on commit 28548ab

Please sign in to comment.