smailer 0.2.6 → 0.2.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ Usage:
2
+
3
+ script/generate smailer_migration
4
+
5
+ Creates a migration file with definitions of the tables needed to run Smailer.
@@ -1,6 +1,4 @@
1
1
  class SmailerMigrationGenerator < Rails::Generator::Base
2
- desc "Create a migration file with definitions of the tables needed to run Smailer."
3
-
4
2
  def manifest
5
3
  file_name = 'create_smailer_tables'
6
4
  @migration_name = file_name.camelize
@@ -1,3 +1,3 @@
1
1
  module Smailer
2
- VERSION = "0.2.6"
2
+ VERSION = "0.2.7"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smailer
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 6
10
- version: 0.2.6
9
+ - 7
10
+ version: 0.2.7
11
11
  platform: ruby
12
12
  authors:
13
13
  - Dimitar Dimitrov
@@ -48,6 +48,7 @@ files:
48
48
  - Gemfile
49
49
  - README.md
50
50
  - Rakefile
51
+ - generators/smailer/USAGE
51
52
  - generators/smailer/smailer_migration_generator.rb
52
53
  - lib/generators/smailer/migration_generator.rb
53
54
  - lib/generators/smailer/templates/migration.rb.erb