rightsignature 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -8,7 +8,7 @@ gem install rightsignature
8
8
  ```
9
9
  or in your Gemfile
10
10
  ```
11
- gem 'rightsignature', '~> 0.1.7'
11
+ gem 'rightsignature', '~> 0.1.8'
12
12
  ```
13
13
 
14
14
  Setup
@@ -343,7 +343,7 @@ You can also add restrictions to what the person can do:
343
343
  * redirect_location: A URI encoded URL that specifies the location we will redirect the user to, after they have created a template.
344
344
  * tags: tags to add to the template. an array of strings (for simple tag) or hashes like {'tag_name' => 'tag_value'} (for tuples pairs)
345
345
  Ex. ['created_from_api', {"user_id" => "123"}]
346
- * acceptabled_role_names: The user creating the Template will be forced to select one of the values provided.
346
+ * acceptable_role_names: The user creating the Template will be forced to select one of the values provided.
347
347
  There will be no free-form name entry when adding roles to the Template. An array of strings.
348
348
  Ex. ["Employee", "Employeer"]
349
349
  * acceptable_merge_field_names: The user creating the Template will be forced to select one of the values provided.
@@ -357,7 +357,7 @@ options = {
357
357
  {:name => "Site ID"},
358
358
  {:name => "Starting City"}
359
359
  ],
360
- :acceptabled_role_names =>
360
+ :acceptable_role_names =>
361
361
  [
362
362
  {:name => "Http Monster"},
363
363
  {:name => "Party Monster"}
@@ -148,7 +148,7 @@ module RightSignature
148
148
  # - redirect_location: A URI encoded URL that specifies the location we will redirect the user to, after they have created a template.
149
149
  # - tags: tags to add to the template. an array of 'tag_name' (for simple tag) or {'tag_name' => 'value'} (for tuples pairs)
150
150
  # Ex. ['created_from_api', {"user_id" => "123"}]
151
- # - acceptabled_role_names: The user creating the Template will be forced to select one of the values provided.
151
+ # - acceptable_role_names: The user creating the Template will be forced to select one of the values provided.
152
152
  # There will be no free-form name entry when adding roles to the Template. An array of strings.
153
153
  # Ex. ["Employee", "Employeer"]
154
154
  # - acceptable_merge_field_names: The user creating the Template will be forced to select one of the values provided.
@@ -158,7 +158,7 @@ module RightSignature
158
158
  xml_hash = {:template => {}}
159
159
  xml_hash[:template][:tags] = TagsHelper.array_to_xml_hash(options[:tags]) if options[:tags]
160
160
 
161
- [:acceptable_merge_field_names, :acceptabled_role_names].each do |option|
161
+ [:acceptable_merge_field_names, :acceptable_role_names].each do |option|
162
162
  xml_hash[:template][option] = array_to_acceptable_names_hash(options[option]) if options[option]
163
163
  end
164
164
 
@@ -1,3 +1,3 @@
1
1
  module RightSignature
2
- VERSION = "0.1.7"
2
+ VERSION = "0.1.8"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rightsignature
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2012-09-28 00:00:00.000000000 Z
14
+ date: 2012-10-05 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: bundler