acts_as_enum 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG ADDED
@@ -0,0 +1,4 @@
1
+ 0.1.0
2
+
3
+ 0.1.1
4
+ Comment the alias method enum_attr
data/README.rdoc CHANGED
@@ -6,6 +6,7 @@
6
6
 
7
7
  Support rails 3
8
8
 
9
+
9
10
  == Usage
10
11
 
11
12
  class User < ActiveRecord::Base
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
data/lib/acts_as_enum.rb CHANGED
@@ -74,7 +74,7 @@ module ActsAsEnum
74
74
  })
75
75
  end
76
76
 
77
- alias enum_attr acts_as_enum
77
+ # alias enum_attr acts_as_enum
78
78
  end
79
79
 
80
80
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: acts_as_enum
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.0
5
+ version: 0.1.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - LiangWenKe
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-03-20 00:00:00 +08:00
13
+ date: 2011-04-02 00:00:00 +08:00
14
14
  default_executable:
15
15
  dependencies: []
16
16
 
@@ -25,8 +25,7 @@ extra_rdoc_files: []
25
25
  files:
26
26
  - lib/acts_as_enum.rb
27
27
  - lib/tasks/acts_as_enum_tasks.rake
28
- - test/acts_as_enum_test.rb
29
- - test/test_helper.rb
28
+ - CHANGELOG
30
29
  - MIT-LICENSE
31
30
  - Rakefile
32
31
  - README.rdoc
@@ -1,8 +0,0 @@
1
- require 'test_helper'
2
-
3
- class ActsAsEnumTest < ActiveSupport::TestCase
4
- # Replace this with your real tests.
5
- test "the truth" do
6
- assert true
7
- end
8
- end
data/test/test_helper.rb DELETED
@@ -1,3 +0,0 @@
1
- require 'rubygems'
2
- require 'active_support'
3
- require 'active_support/test_case'