bddfire 1.7.3 → 1.7.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a6fde713c1d8b89f6cc8f30cc737743620274c18
4
- data.tar.gz: 5af9718d876a95a34f802fef2aa625b36587f5a6
3
+ metadata.gz: 5721b3b815aca354b144880431673d1135c4baf8
4
+ data.tar.gz: e5b97b5cdc0491ca2287a525179b9b2e7292fe6a
5
5
  SHA512:
6
- metadata.gz: 8bff3d9739e4a14435c46b38bbdb546994c3f8865418d3916713ef21302904a3273a3bec7f4dcdc8aa00ee8712c3b91c9506f6eb8f53e663ad0b5e7de4260052
7
- data.tar.gz: 5bebf2509dd903ca0d4a76103cd44cf624861cd60f77d41168d8155b64aee8780e754afbd62e8ad9bb6e59909be2378d00b6b802ac4da1e4dc6e97d9367f1854
6
+ metadata.gz: 5d5cec9dd89c5cc3251ac162807e8acb540cc8b2706edc87776b917f7ce6b1ae2abd19bdcdc5ced5e40c6ebd768ce88031250c155a799a7db0f9de8c6e1252a5
7
+ data.tar.gz: 19cffb71485c69d659ca5c32622c74b1db9aa759b089509fbf4f96b28bc7e3368ad54c71aec31f8130ad7b7a6fd971ae5ecc51c0b60e4aa6e8079778ddda8082
data/bin/bddfire CHANGED
@@ -2,12 +2,11 @@
2
2
 
3
3
  lib_dir = File.expand_path("../lib", File.dirname(__FILE__))
4
4
  $:.unshift lib_dir unless $:.include?(lib_dir)
5
-
6
- require 'fileutils'
7
- # require 'bddfire'
8
- # BDDfire::App.start
9
-
10
- @root_dir =File.join(FileUtils.pwd, "framework")
11
- @source_dir = File.join(File.dirname(__FILE__), '..', 'scaffold')
12
-
13
- FileUtils.cp_r(@source_dir, @root_dir)
5
+ # require 'fileutils'
6
+ require 'bddfire'
7
+ BDDfire::App.start
8
+
9
+ # @root_dir =File.join(FileUtils.pwd, "framework")
10
+ # @source_dir = File.join(File.dirname(__FILE__), '..', 'scaffold')
11
+ #
12
+ # FileUtils.cp_r(@source_dir, @root_dir)
@@ -1,3 +1,3 @@
1
1
  module BDDfire
2
- VERSION = "1.7.3"
2
+ VERSION = "1.7.4"
3
3
  end
@@ -1,13 +1,13 @@
1
- require_relative 'web/web_methods'
2
-
3
- Given(/^I am on "(.*?)"$/) do |url|
4
- visit(url)
5
- end
6
-
7
- When(/^I fill in "(.*?)" with "(.*?)"$/) do |element, text|
8
- fill_in element, with: text
9
- end
10
-
11
- Then(/^I should see "(.*?)"$/) do |text|
12
- page.should have_content text
13
- end
1
+ # require_relative 'web/web_methods'
2
+ #
3
+ # Given(/^I am on "(.*?)"$/) do |url|
4
+ # visit(url)
5
+ # end
6
+ #
7
+ # When(/^I fill in "(.*?)" with "(.*?)"$/) do |element, text|
8
+ # fill_in element, with: text
9
+ # end
10
+ #
11
+ # Then(/^I should see "(.*?)"$/) do |text|
12
+ # page.should have_content text
13
+ # end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bddfire
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.3
4
+ version: 1.7.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shashikant Jagtap