date_scopes 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -39,7 +39,8 @@ module DateScopes
39
39
  end
40
40
 
41
41
  define_method options[:column].to_s+'=' do |value|
42
- value = value.downcase == 'true' if value.is_a? String
42
+ value = %w{true 1}.include? value.downcase if value.is_a? String
43
+ value = value == 1 if value.is_a? Fixnum
43
44
 
44
45
  if value && !self[column_name]
45
46
 
@@ -1,3 +1,3 @@
1
1
  module DateScopes
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
@@ -59,6 +59,22 @@ describe DateScopes do
59
59
  post.should_not be_published
60
60
  end
61
61
 
62
+ it 'copes with integer as string passed to boolean setter' do
63
+ post = Post.new
64
+ post.published = '1'
65
+ post.should be_published
66
+ post.published = '0'
67
+ post.should_not be_published
68
+ end
69
+
70
+ it 'copes with integer passed to boolean setter' do
71
+ post = Post.new
72
+ post.published = 1
73
+ post.should be_published
74
+ post.published = 0
75
+ post.should_not be_published
76
+ end
77
+
62
78
  context 'when published_at is in the past' do
63
79
  before(:all) {@post = Post.create(:published_at => Time.now - 10.minutes)}
64
80
 
Binary file
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: date_scopes
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
5
- prerelease:
4
+ hash: 17
5
+ prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 4
10
- version: 0.1.4
9
+ - 5
10
+ version: 0.1.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jonathan Davies
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2011-01-28 00:00:00 +00:00
19
+ date: 2011-02-01 00:00:00 +00:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
@@ -148,7 +148,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
148
148
  requirements: []
149
149
 
150
150
  rubyforge_project:
151
- rubygems_version: 1.4.2
151
+ rubygems_version: 1.3.7
152
152
  signing_key:
153
153
  specification_version: 3
154
154
  summary: An ActiveRecord extension for automatic date-based scopes