tagger 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  == Installing
4
4
 
5
- 1. Install the plugin with <tt>script/plugin install git://github.com/fnando/has_tags.git</tt>
5
+ 1. Install it with <tt>gem install tagger</tt>
6
6
  2. Generate the migration files with <tt>rails generate tagger:install</tt>.
7
7
  3. Finally, run the migrations with <tt>rake db:migrate</tt>.
8
8
 
@@ -6,8 +6,8 @@ module Tagger
6
6
 
7
7
  def copy_migrations
8
8
  stamp = proc {|time| time.utc.strftime("%Y%m%d%H%M%S")}
9
- copy_file "tags.rb", "db/migrations/#{stamp[Time.now]}_create_tags.rb"
10
- copy_file "taggings.rb", "db/migrations/#{stamp[1.second.from_now]}_create_taggings.rb"
9
+ copy_file "tags.rb", "db/migrate/#{stamp[Time.now]}_create_tags.rb"
10
+ copy_file "taggings.rb", "db/migrate/#{stamp[1.second.from_now]}_create_taggings.rb"
11
11
  end
12
12
  end
13
13
  end
@@ -2,7 +2,7 @@ module Tagger
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- PATCH = 0
5
+ PATCH = 1
6
6
  STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
7
7
  end
8
8
  end
data/tagger.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{tagger}
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Nando Vieira"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 1
9
+ version: 0.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Nando Vieira