serialize_variants 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/Rakefile +1 -2
  2. data/init.rb +0 -4
  3. data/rails/init.rb +4 -0
  4. metadata +3 -2
data/Rakefile CHANGED
@@ -24,7 +24,6 @@ Rake::RDocTask.new(:rdoc) do |rdoc|
24
24
  end
25
25
 
26
26
  PKG_FILES = FileList[
27
- '*.rb',
28
27
  '[a-zA-Z]*',
29
28
  'generators/**/*',
30
29
  'lib/**/*',
@@ -35,7 +34,7 @@ PKG_FILES = FileList[
35
34
 
36
35
  spec = Gem::Specification.new do |s|
37
36
  s.name = "serialize_variants"
38
- s.version = "0.0.2"
37
+ s.version = "0.0.3"
39
38
  s.author = "Nicolas Goy"
40
39
  s.email = "kuon@goyman.com"
41
40
  s.homepage = "http://goyman.com/"
data/init.rb CHANGED
@@ -1,4 +0,0 @@
1
- # Include hook code here
2
- require 'serialize_variants'
3
-
4
- ActiveRecord::Base.send(:include, SerializeVariants::Variants)
data/rails/init.rb ADDED
@@ -0,0 +1,4 @@
1
+ # Include hook code here
2
+ require 'serialize_variants'
3
+
4
+ ActiveRecord::Base.send(:include, SerializeVariants::Variants)
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: serialize_variants
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.2
5
+ version: 0.0.3
6
6
  platform: ruby
7
7
  authors:
8
8
  - Nicolas Goy
@@ -24,11 +24,12 @@ extra_rdoc_files:
24
24
  files:
25
25
  - init.rb
26
26
  - install.rb
27
- - uninstall.rb
28
27
  - MIT-LICENSE
29
28
  - Rakefile
30
29
  - README
30
+ - uninstall.rb
31
31
  - lib/serialize_variants.rb
32
+ - rails/init.rb
32
33
  - test/serialize_variants_test.rb
33
34
  - test/test_helper.rb
34
35
  homepage: http://goyman.com/