orphan_records 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README +14 -0
- data/orphan_records.gemspec +4 -2
- metadata +3 -1
data/README
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
= orphan_records
|
2
|
+
Gem which show/delete the orphan records in your Rails applivcation
|
3
|
+
|
4
|
+
== Installation
|
5
|
+
|
6
|
+
gem install orphan_records
|
7
|
+
|
8
|
+
== Usage
|
9
|
+
|
10
|
+
rake orphan_records:show # this rake task will show the list of orphan records
|
11
|
+
|
12
|
+
rake orphan_records:delete # this rake task will delete the orphan records
|
13
|
+
|
14
|
+
|
data/orphan_records.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'orphan_records'
|
3
|
-
s.version = "0.0.
|
3
|
+
s.version = "0.0.2"
|
4
4
|
|
5
5
|
s.authors = [%q{abhilash}]
|
6
6
|
s.date = %q{2013-04-07}
|
@@ -8,13 +8,15 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.email = %q{abhidsm@gmail.com}
|
9
9
|
s.extra_rdoc_files = [
|
10
10
|
"LICENSE.txt",
|
11
|
-
"README.md"
|
11
|
+
"README.md",
|
12
|
+
"README"
|
12
13
|
]
|
13
14
|
s.files = [
|
14
15
|
"Gemfile",
|
15
16
|
"Gemfile.lock",
|
16
17
|
"LICENSE.txt",
|
17
18
|
"README.md",
|
19
|
+
"README",
|
18
20
|
"Rakefile",
|
19
21
|
"lib/orphan_records.rb",
|
20
22
|
"lib/orphan_records/railtie.rb",
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: orphan_records
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -18,11 +18,13 @@ extensions: []
|
|
18
18
|
extra_rdoc_files:
|
19
19
|
- LICENSE.txt
|
20
20
|
- README.md
|
21
|
+
- README
|
21
22
|
files:
|
22
23
|
- Gemfile
|
23
24
|
- Gemfile.lock
|
24
25
|
- LICENSE.txt
|
25
26
|
- README.md
|
27
|
+
- README
|
26
28
|
- Rakefile
|
27
29
|
- lib/orphan_records.rb
|
28
30
|
- lib/orphan_records/railtie.rb
|