texticle 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,10 @@
1
- === 1.0.0 / 2009-04-14
1
+ === 1.0.2 / 2009-10-17
2
+
3
+ * 1 bugfix
4
+
5
+ * Generated migration now uses UTC time rather than local time.
6
+
7
+ === 1.0.1 / 2009-04-14
2
8
 
3
9
  * 1 minor enhancement
4
10
 
@@ -48,7 +48,7 @@ require 'texticle/full_text_index'
48
48
  # end
49
49
  module Texticle
50
50
  # The version of Texticle you are using.
51
- VERSION = '1.0.1'
51
+ VERSION = '1.0.2'
52
52
 
53
53
  # A list of full text indexes
54
54
  attr_accessor :full_text_indexes
@@ -4,7 +4,7 @@ require 'texticle'
4
4
  namespace :texticle do
5
5
  desc "Create full text index migration"
6
6
  task :migration => :environment do
7
- now = Time.now
7
+ now = Time.now.utc
8
8
  filename = "#{now.strftime('%Y%m%d%H%m%S')}_full_text_search_#{now.to_i}.rb"
9
9
  File.open(File.join(RAILS_ROOT, 'db', 'migrate', filename), 'wb') { |fh|
10
10
  fh.puts "class FullTextSearch#{now.to_i} < ActiveRecord::Migration"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: texticle
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Patterson
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-10-16 00:00:00 -07:00
12
+ date: 2009-10-17 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency