paraphraser 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/lib/paraphraser/railties/paraphraser.rake +12 -3
- data/paraphraser.gemspec +1 -1
- metadata +3 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.1
|
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
namespace :db do
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
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
|
data/paraphraser.gemspec
CHANGED
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 2
|
|
8
|
-
-
|
|
9
|
-
version: 0.2.
|
|
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:
|
|
88
|
+
hash: 963744079
|
|
89
89
|
segments:
|
|
90
90
|
- 0
|
|
91
91
|
version: "0"
|