paraphraser 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0
1
+ 0.2.1
@@ -1,6 +1,15 @@
1
1
  namespace :db do
2
- desc 'provides a rake task to convert migrations to sql statements for *the dba*.'
3
- task :paraphrase => :environment do
4
- Paraphraser::Convertor.convert
2
+ namespace :paraphrase do
3
+
4
+ desc 'provides a rake task to convert all migrations to sql statements for *the dba*.'
5
+ task :all => :environment do
6
+ Paraphraser::Convertor.convert
7
+ end
8
+
9
+ desc 'provides a rake task to convert all migrations in range to sql statements for *the dba*.'
10
+ task :in_range, :from_version, :to_version => :environment do
11
+ Paraphraser::Convertor.convert
12
+ end
13
+
5
14
  end
6
15
  end
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{paraphraser}
8
- s.version = "0.2.0"
8
+ s.version = "0.2.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Vinay Patel"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 2
8
- - 0
9
- version: 0.2.0
8
+ - 1
9
+ version: 0.2.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Vinay Patel
@@ -85,7 +85,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
85
85
  requirements:
86
86
  - - ">="
87
87
  - !ruby/object:Gem::Version
88
- hash: 498993587
88
+ hash: 963744079
89
89
  segments:
90
90
  - 0
91
91
  version: "0"