drafts 0.0.5 → 0.0.6
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/lib/drafts/{draft_methods.rb → drafts.rb} +0 -0
- data/lib/railtie.rb +1 -1
- metadata +43 -22
File without changes
|
data/lib/railtie.rb
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
require "drafts/
|
1
|
+
require "drafts/drafts"
|
2
2
|
ActiveRecord::Base.send :include, DraftsMethods
|
metadata
CHANGED
@@ -1,49 +1,70 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: drafts
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 19
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 6
|
10
|
+
version: 0.0.6
|
6
11
|
platform: ruby
|
7
|
-
authors:
|
12
|
+
authors:
|
8
13
|
- mystand
|
9
14
|
autorequire: renoter
|
10
15
|
bindir: bin
|
11
16
|
cert_chain: []
|
12
|
-
|
17
|
+
|
18
|
+
date: 2012-10-21 00:00:00 +06:00
|
19
|
+
default_executable:
|
13
20
|
dependencies: []
|
14
|
-
|
15
|
-
|
21
|
+
|
22
|
+
description: This gem provide interface of drafts. It could be using for saving unvalid records in temp table
|
16
23
|
email: kuznetsov@mystand.ru
|
17
24
|
executables: []
|
25
|
+
|
18
26
|
extensions: []
|
27
|
+
|
19
28
|
extra_rdoc_files: []
|
20
|
-
|
29
|
+
|
30
|
+
files:
|
21
31
|
- README
|
22
|
-
- lib/drafts/
|
32
|
+
- lib/drafts/drafts.rb
|
23
33
|
- lib/drafts.rb
|
24
34
|
- lib/railtie.rb
|
35
|
+
has_rdoc: true
|
25
36
|
homepage: http://github.com/lxkuz/draft
|
26
37
|
licenses: []
|
38
|
+
|
27
39
|
post_install_message:
|
28
40
|
rdoc_options: []
|
29
|
-
|
41
|
+
|
42
|
+
require_paths:
|
30
43
|
- lib
|
31
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
44
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
32
45
|
none: false
|
33
|
-
requirements:
|
34
|
-
- -
|
35
|
-
- !ruby/object:Gem::Version
|
36
|
-
|
37
|
-
|
46
|
+
requirements:
|
47
|
+
- - ">="
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
hash: 3
|
50
|
+
segments:
|
51
|
+
- 0
|
52
|
+
version: "0"
|
53
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
38
54
|
none: false
|
39
|
-
requirements:
|
40
|
-
- -
|
41
|
-
- !ruby/object:Gem::Version
|
42
|
-
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
hash: 3
|
59
|
+
segments:
|
60
|
+
- 0
|
61
|
+
version: "0"
|
43
62
|
requirements: []
|
63
|
+
|
44
64
|
rubyforge_project:
|
45
|
-
rubygems_version: 1.
|
65
|
+
rubygems_version: 1.3.7
|
46
66
|
signing_key:
|
47
67
|
specification_version: 3
|
48
68
|
summary: Drafts interface
|
49
69
|
test_files: []
|
70
|
+
|