sms-spec 0.1.8 → 0.1.9

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: 92bb43dcaef54a34db7011ca58bc9227438ae052
4
- data.tar.gz: 7d9fcdcb6e68944bd80b28ab89b11fe09877ab64
3
+ metadata.gz: 9d039991d3a1759b0f0530d9305489ab982cc651
4
+ data.tar.gz: 734d77de958a547d05d2486a1e4c3e826280ac0d
5
5
  SHA512:
6
- metadata.gz: 2fb64036a095aadd703385b226b352fd0b5b2d8e1143dfec0478f8b1aae87b5da8dc22601380e7b912b97fc431088cd89827b960957170988473ccc5e8d78246
7
- data.tar.gz: 0fbd7ac0f99f4e9edbdcb23dbd328a1d8665e2656f1fb8119d5a0908271139850f92d7c0dffb01d16d51c7a6bc0342084507a361650083a2f4b2e42cec796928
6
+ metadata.gz: 4ae795ca965b92d97dfafec969166ca4edacf1d857104404a57d60ff74d71250190dfda95c6ace8d6b329b27afe8cfdb05f14ae6c33a0f68917ee1a9805ebd7b
7
+ data.tar.gz: 8f27175ec0afcfe3c4169d5fe0135b57d1e1241cc75b58bdb73ef11cb5d2dc87739e455c2b4ce85c1a97ca50e384864ccbd2dcf03b92f829b72f9a07a213a220
data/README.markdown CHANGED
@@ -3,7 +3,7 @@
3
3
  An RSpec DSL and Cucumber steps to test SMS interactions with your
4
4
  Ruby on Rails application.
5
5
 
6
- Currently this gem only supports testing SMS messageing using the
6
+ Currently this gem only supports testing SMS messaging using the
7
7
  [twilio-ruby](https://github.com/twilio/twilio-ruby) and
8
8
  [lookout-clickatell](https://github.com/lookout/clickatell) gem.
9
9
 
@@ -16,10 +16,10 @@ end
16
16
  </pre>
17
17
 
18
18
  ## RSpec
19
- In your spec\_helper.rb file configure a driver and include helper and matcher methods.
19
+ In your spec_helper.rb file configure a driver and include helper and matcher methods.
20
20
 
21
21
  <pre>
22
- require 'sms\_spec'
22
+ require 'sms_spec'
23
23
 
24
24
  Spec::Runner.configure do |config|
25
25
  config.include(SmsSpec::Helpers)
@@ -33,12 +33,12 @@ SmsSpec.driver = :twilio-ruby #this can be any available sms-spec driver
33
33
  Add the folloing to you env.rb file:
34
34
 
35
35
  <pre>
36
- require 'sms\_spec'
37
- require 'sms\_spec/cucumber'
36
+ require 'sms_spec'
37
+ require 'sms_spec/cucumber'
38
38
  </pre>
39
39
 
40
- This loads the sms\_spec RSpec helpers into your cucumber wold. Then,
41
- run the following to generate the text\_messsage\_steps.rb file:
40
+ This loads the sms_spec RSpec helpers into your cucumber wold. Then,
41
+ run the following to generate the text_messsage_steps.rb file:
42
42
 
43
43
  <pre>
44
44
  rails generate sms_spec:steps
@@ -1,5 +1,5 @@
1
- class Twilio
2
- class REST
1
+ module Twilio
2
+ module REST
3
3
  class Client
4
4
 
5
5
  def initialize(account_sid, auth_token)
@@ -1,3 +1,3 @@
1
1
  module SmsSpec
2
- VERSION = "0.1.8"
2
+ VERSION = "0.1.9"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sms-spec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Rittersdorf
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-07 00:00:00.000000000 Z
11
+ date: 2014-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -145,3 +145,4 @@ test_files:
145
145
  - spec/helpers_spec.rb
146
146
  - spec/matchers_spec.rb
147
147
  - spec/spec_helper.rb
148
+ has_rdoc: