apollo 1.3.0.beta.1 → 1.3.0.beta.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.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.3.0.beta.1
1
+ 1.3.0.beta.2
data/apollo.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{apollo}
8
- s.version = "1.3.0.beta.1"
8
+ s.version = "1.3.0.beta.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Travis D. Warlick, Jr."]
@@ -44,7 +44,7 @@ module Apollo
44
44
  surround = (options[:surround] or ['(',')'])
45
45
 
46
46
  str = state_machine.state_sets[set_name.to_sym].state_names
47
- if persiste_string_state_name?
47
+ if persist_string_state_name?
48
48
  str = str.collect { |state_name| quotes + state_name + quotes }.join(join)
49
49
  else
50
50
  str = str.collect { |state_name| state_name_to_id(state_name) }.join(join)
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: apollo
3
3
  version: !ruby/object:Gem::Version
4
- hash: 62196401
4
+ hash: 62196407
5
5
  prerelease: true
6
6
  segments:
7
7
  - 1
8
8
  - 3
9
9
  - 0
10
10
  - beta
11
- - 1
12
- version: 1.3.0.beta.1
11
+ - 2
12
+ version: 1.3.0.beta.2
13
13
  platform: ruby
14
14
  authors:
15
15
  - Travis D. Warlick, Jr.