drupal83 0.1.3 → 0.1.4

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.
@@ -0,0 +1,14 @@
1
+ module Drupal
2
+ class File
3
+ eval Drupal.common
4
+ storage_names[:drupal] = 'files'
5
+
6
+ property :fid, Serial
7
+ property :uid, Integer
8
+
9
+ property :filename, String
10
+ property :filepath, String
11
+ property :filemime, String
12
+
13
+ end
14
+ end
@@ -0,0 +1,11 @@
1
+ module Drupal
2
+ class NodeType
3
+ eval Drupal.common
4
+ storage_names[:drupal] = 'node_type'
5
+
6
+ property :type, String
7
+ property :description, Text
8
+ property :name, String
9
+
10
+ end
11
+ end
@@ -0,0 +1,12 @@
1
+ module Drupal
2
+ class Permission
3
+ eval Drupal.common
4
+ storage_names[:drupal] = 'permission'
5
+
6
+ property :pid, Serial
7
+ property :rid, Integer
8
+ property :tid, Integer
9
+ property :perm, String
10
+
11
+ end
12
+ end
@@ -0,0 +1,6 @@
1
+ module Drupal
2
+ class Role
3
+ eval Drupal.common
4
+ storage_names[:drupal] = 'role'
5
+ end
6
+ end
@@ -1,3 +1,3 @@
1
1
  module Drupal
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: drupal83
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -30,7 +30,11 @@ files:
30
30
  - lib/drupal/cck/builder.rb
31
31
  - lib/drupal/cck/fields.rb
32
32
  - lib/drupal/comment.rb
33
+ - lib/drupal/file.rb
33
34
  - lib/drupal/node.rb
35
+ - lib/drupal/node_type.rb
36
+ - lib/drupal/permission.rb
37
+ - lib/drupal/role.rb
34
38
  - lib/drupal/user.rb
35
39
  - lib/drupal/version.rb
36
40
  - lib/drupal83.rb