bdd-rails 0.1.1 → 0.1.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: af3a670e70d668a98e0dd4f08a7f0861aa766d45
4
- data.tar.gz: 9effde30227c1ff06ddf8d75117c8aaf29c6144c
3
+ metadata.gz: acb273293509fd065a1d3b3491a37a91a91fb51d
4
+ data.tar.gz: dd9a4a74294373554e6c6fa8f4deb2473e47b3b5
5
5
  SHA512:
6
- metadata.gz: c04cec02fa78e9b8f3513f47bc1380a15ccbc0717b9c74d8814d5935279a1f868d8cec0f7b79f0872e24a38112ecd84d5d8bed1957b3486542c18aa3f18f875b
7
- data.tar.gz: 485c94ae46e1cc0c0fc4a65bc7e6c7b0b2b808a820d8a1e11b5a5d35da0a5872b03ebcef68f6e0770d02e127adf88f86ea315f99cee48562377c0577e0e9426e
6
+ metadata.gz: cf88cb8750ecd7df50dc84103639f7c239ed1cde8f1b40baed06c2ca5e9e2560207e3e418342a9a1e39b392a736b5a6fec1d26a36ce28caf0a5c4c71e9d5f222
7
+ data.tar.gz: 273b07db1276e1d350c38005e6df29859ff8095c7b5918b1b32f47956249f95e23f64b0db5f8b47bf1429211a4fdff0d87d7a4ddadc7404fefa72cd995d5e2f2
data/.gitignore CHANGED
@@ -1 +1,2 @@
1
1
  pkg
2
+ test_app
data/.travis.yml ADDED
@@ -0,0 +1,6 @@
1
+ rvm:
2
+ - 2.1
3
+ - 2.2
4
+ script: sh test.sh
5
+ notifications:
6
+ slack: madetechteam:be3g1qE6so2p2UcqQiOGBRUs
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bdd-rails (0.1.1)
4
+ bdd-rails (0.1.2)
5
5
  bundler
6
6
  rails
7
7
 
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # BDD Rails: A starter kit
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/bdd-rails.svg)](https://badge.fury.io/rb/bdd-rails)
4
+ [![Build Status](https://travis-ci.org/madetech/bdd-rails.svg?branch=master)](https://travis-ci.org/madetech/bdd-rails)
4
5
 
5
6
  Hello there! So you think BDD is a great way to talk about software? Are you
6
7
  ready to codify some of those conversations? Do you build apps in rails? If
@@ -1,3 +1,3 @@
1
1
  module BddRails
2
- VERSION = '0.1.1'
2
+ VERSION = '0.1.2'
3
3
  end
data/test.sh CHANGED
@@ -1,9 +1,8 @@
1
- cd example
2
- rails new --skip-test-unit $1
3
- cd $1
4
- echo "gem 'bdd-rails', path: '../../'" >> Gemfile
1
+ set -e
2
+
3
+ rm -rf test_app
4
+ bundle exec rails new --skip-test-unit test_app
5
+ cd test_app
6
+ echo "gem 'bdd-rails', path: '../'" >> Gemfile
5
7
  bundle
6
- spring stop
7
8
  bundle exec rails g bdd_rails:install
8
- cd ..
9
- cd ..
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bdd-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luke Morton
@@ -60,6 +60,7 @@ extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
62
  - ".gitignore"
63
+ - ".travis.yml"
63
64
  - Gemfile
64
65
  - Gemfile.lock
65
66
  - README.md