ixtlan-remote 0.1.5 → 0.1.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/Gemfile +3 -0
- data/lib/ixtlan/passwords.rb +21 -1
- data/lib/ixtlan/user_management/domain_resource.rb +1 -1
- data/lib/ixtlan/user_management/dummy_authentication.rb +21 -1
- data/lib/ixtlan/user_management/session_cuba.rb +21 -1
- data/lib/ixtlan/user_management/session_manager.rb +37 -3
- data/lib/ixtlan/user_management/session_plugin.rb +21 -1
- data/lib/ixtlan/user_management/session_serializer.rb +21 -1
- data/lib/ixtlan/user_management/user_resource.rb +3 -3
- data/lib/ixtlan/user_management/user_serializer.rb +21 -1
- metadata +155 -166
data/Gemfile
CHANGED
data/lib/ixtlan/passwords.rb
CHANGED
@@ -1,3 +1,23 @@
|
|
1
|
+
#
|
2
|
+
# ixtlan-remote - helper sync data between miniapps or communicate wth realtime
|
3
|
+
# rest-services
|
4
|
+
# Copyright (C) 2013 Christian Meier
|
5
|
+
#
|
6
|
+
# This file is part of ixtlan-remote.
|
7
|
+
#
|
8
|
+
# ixtlan-remote is free software: you can redistribute it and/or modify
|
9
|
+
# it under the terms of the GNU Affero General Public License as
|
10
|
+
# published by the Free Software Foundation, either version 3 of the
|
11
|
+
# License, or (at your option) any later version.
|
12
|
+
#
|
13
|
+
# ixtlan-remote is distributed in the hope that it will be useful,
|
14
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
# GNU Affero General Public License for more details.
|
17
|
+
#
|
18
|
+
# You should have received a copy of the GNU Affero General Public License
|
19
|
+
# along with ixtlan-remote. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
#
|
1
21
|
require 'yaml'
|
2
22
|
require 'erb'
|
3
23
|
module Ixtlan
|
@@ -49,4 +69,4 @@ module Ixtlan
|
|
49
69
|
end
|
50
70
|
end
|
51
71
|
end
|
52
|
-
end
|
72
|
+
end
|
@@ -1,3 +1,23 @@
|
|
1
|
+
#
|
2
|
+
# ixtlan-remote - helper sync data between miniapps or communicate wth realtime
|
3
|
+
# rest-services
|
4
|
+
# Copyright (C) 2013 Christian Meier
|
5
|
+
#
|
6
|
+
# This file is part of ixtlan-remote.
|
7
|
+
#
|
8
|
+
# ixtlan-remote is free software: you can redistribute it and/or modify
|
9
|
+
# it under the terms of the GNU Affero General Public License as
|
10
|
+
# published by the Free Software Foundation, either version 3 of the
|
11
|
+
# License, or (at your option) any later version.
|
12
|
+
#
|
13
|
+
# ixtlan-remote is distributed in the hope that it will be useful,
|
14
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
# GNU Affero General Public License for more details.
|
17
|
+
#
|
18
|
+
# You should have received a copy of the GNU Affero General Public License
|
19
|
+
# along with ixtlan-remote. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
#
|
1
21
|
module Ixtlan
|
2
22
|
module UserManagement
|
3
23
|
module DummyAuthentication
|
@@ -47,4 +67,4 @@ module Ixtlan
|
|
47
67
|
|
48
68
|
end
|
49
69
|
end
|
50
|
-
end
|
70
|
+
end
|
@@ -1,3 +1,23 @@
|
|
1
|
+
#
|
2
|
+
# ixtlan-remote - helper sync data between miniapps or communicate wth realtime
|
3
|
+
# rest-services
|
4
|
+
# Copyright (C) 2013 Christian Meier
|
5
|
+
#
|
6
|
+
# This file is part of ixtlan-remote.
|
7
|
+
#
|
8
|
+
# ixtlan-remote is free software: you can redistribute it and/or modify
|
9
|
+
# it under the terms of the GNU Affero General Public License as
|
10
|
+
# published by the Free Software Foundation, either version 3 of the
|
11
|
+
# License, or (at your option) any later version.
|
12
|
+
#
|
13
|
+
# ixtlan-remote is distributed in the hope that it will be useful,
|
14
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
# GNU Affero General Public License for more details.
|
17
|
+
#
|
18
|
+
# You should have received a copy of the GNU Affero General Public License
|
19
|
+
# along with ixtlan-remote. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
#
|
1
21
|
# -*- Coding: utf-8 -*-
|
2
22
|
require 'ixtlan/user_management/session_plugin'
|
3
23
|
|
@@ -44,4 +64,4 @@ module Ixtlan
|
|
44
64
|
end
|
45
65
|
end
|
46
66
|
end
|
47
|
-
end
|
67
|
+
end
|
@@ -1,3 +1,23 @@
|
|
1
|
+
#
|
2
|
+
# ixtlan-remote - helper sync data between miniapps or communicate wth realtime
|
3
|
+
# rest-services
|
4
|
+
# Copyright (C) 2013 Christian Meier
|
5
|
+
#
|
6
|
+
# This file is part of ixtlan-remote.
|
7
|
+
#
|
8
|
+
# ixtlan-remote is free software: you can redistribute it and/or modify
|
9
|
+
# it under the terms of the GNU Affero General Public License as
|
10
|
+
# published by the Free Software Foundation, either version 3 of the
|
11
|
+
# License, or (at your option) any later version.
|
12
|
+
#
|
13
|
+
# ixtlan-remote is distributed in the hope that it will be useful,
|
14
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
# GNU Affero General Public License for more details.
|
17
|
+
#
|
18
|
+
# You should have received a copy of the GNU Affero General Public License
|
19
|
+
# along with ixtlan-remote. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
#
|
1
21
|
# -*- Coding: utf-8 -*-
|
2
22
|
require 'ixtlan/user_management/user_serializer'
|
3
23
|
require 'ixtlan/user_management/session_model'
|
@@ -21,9 +41,23 @@ module Ixtlan
|
|
21
41
|
serializer( user ).use( :session ).to_hash
|
22
42
|
end
|
23
43
|
|
24
|
-
|
25
|
-
|
26
|
-
|
44
|
+
if User.respond_to?( :properties )
|
45
|
+
def from_session( data )
|
46
|
+
if data
|
47
|
+
data = data.dup
|
48
|
+
groups = (data.delete( 'groups' ) || []).collect do |g|
|
49
|
+
Group.new( g )
|
50
|
+
end
|
51
|
+
user = User.first( :login => data[ 'login' ] )
|
52
|
+
user.groups = groups
|
53
|
+
user
|
54
|
+
end
|
55
|
+
end
|
56
|
+
else
|
57
|
+
def from_session( data )
|
58
|
+
if data
|
59
|
+
User.new( data )
|
60
|
+
end
|
27
61
|
end
|
28
62
|
end
|
29
63
|
|
@@ -1,3 +1,23 @@
|
|
1
|
+
#
|
2
|
+
# ixtlan-remote - helper sync data between miniapps or communicate wth realtime
|
3
|
+
# rest-services
|
4
|
+
# Copyright (C) 2013 Christian Meier
|
5
|
+
#
|
6
|
+
# This file is part of ixtlan-remote.
|
7
|
+
#
|
8
|
+
# ixtlan-remote is free software: you can redistribute it and/or modify
|
9
|
+
# it under the terms of the GNU Affero General Public License as
|
10
|
+
# published by the Free Software Foundation, either version 3 of the
|
11
|
+
# License, or (at your option) any later version.
|
12
|
+
#
|
13
|
+
# ixtlan-remote is distributed in the hope that it will be useful,
|
14
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
# GNU Affero General Public License for more details.
|
17
|
+
#
|
18
|
+
# You should have received a copy of the GNU Affero General Public License
|
19
|
+
# along with ixtlan-remote. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
#
|
1
21
|
# -*- Coding: utf-8 -*-
|
2
22
|
require 'ixtlan/user_management/authenticator'
|
3
23
|
|
@@ -29,4 +49,4 @@ module Ixtlan
|
|
29
49
|
end
|
30
50
|
end
|
31
51
|
end
|
32
|
-
end
|
52
|
+
end
|
@@ -1,3 +1,23 @@
|
|
1
|
+
#
|
2
|
+
# ixtlan-remote - helper sync data between miniapps or communicate wth realtime
|
3
|
+
# rest-services
|
4
|
+
# Copyright (C) 2013 Christian Meier
|
5
|
+
#
|
6
|
+
# This file is part of ixtlan-remote.
|
7
|
+
#
|
8
|
+
# ixtlan-remote is free software: you can redistribute it and/or modify
|
9
|
+
# it under the terms of the GNU Affero General Public License as
|
10
|
+
# published by the Free Software Foundation, either version 3 of the
|
11
|
+
# License, or (at your option) any later version.
|
12
|
+
#
|
13
|
+
# ixtlan-remote is distributed in the hope that it will be useful,
|
14
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
# GNU Affero General Public License for more details.
|
17
|
+
#
|
18
|
+
# You should have received a copy of the GNU Affero General Public License
|
19
|
+
# along with ixtlan-remote. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
#
|
1
21
|
require 'ixtlan/babel/serializer'
|
2
22
|
module Ixtlan
|
3
23
|
module UserManagement
|
@@ -18,4 +38,4 @@ module Ixtlan
|
|
18
38
|
|
19
39
|
end
|
20
40
|
end
|
21
|
-
end
|
41
|
+
end
|
@@ -1,3 +1,23 @@
|
|
1
|
+
#
|
2
|
+
# ixtlan-remote - helper sync data between miniapps or communicate wth realtime
|
3
|
+
# rest-services
|
4
|
+
# Copyright (C) 2013 Christian Meier
|
5
|
+
#
|
6
|
+
# This file is part of ixtlan-remote.
|
7
|
+
#
|
8
|
+
# ixtlan-remote is free software: you can redistribute it and/or modify
|
9
|
+
# it under the terms of the GNU Affero General Public License as
|
10
|
+
# published by the Free Software Foundation, either version 3 of the
|
11
|
+
# License, or (at your option) any later version.
|
12
|
+
#
|
13
|
+
# ixtlan-remote is distributed in the hope that it will be useful,
|
14
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
# GNU Affero General Public License for more details.
|
17
|
+
#
|
18
|
+
# You should have received a copy of the GNU Affero General Public License
|
19
|
+
# along with ixtlan-remote. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
#
|
1
21
|
require 'ixtlan/babel/serializer'
|
2
22
|
module Ixtlan
|
3
23
|
module UserManagement
|
@@ -12,4 +32,4 @@ module Ixtlan
|
|
12
32
|
})
|
13
33
|
end
|
14
34
|
end
|
15
|
-
end
|
35
|
+
end
|
metadata
CHANGED
@@ -1,190 +1,188 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: ixtlan-remote
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 1
|
9
|
-
- 5
|
10
|
-
version: 0.1.5
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 0.1.6
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Christian Meier
|
14
|
-
autorequire:
|
9
|
+
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
- !ruby/object:Gem::Dependency
|
12
|
+
date: 2013-01-28 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
21
15
|
name: rest-client
|
22
|
-
|
23
|
-
|
16
|
+
version_requirements: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - "~>"
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: 1.6.3
|
24
21
|
none: false
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
segments:
|
30
|
-
- 1
|
31
|
-
- 6
|
32
|
-
- 3
|
22
|
+
requirement: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
33
26
|
version: 1.6.3
|
27
|
+
none: false
|
28
|
+
prerelease: false
|
34
29
|
type: :runtime
|
35
|
-
|
36
|
-
- !ruby/object:Gem::Dependency
|
30
|
+
- !ruby/object:Gem::Dependency
|
37
31
|
name: rake
|
38
|
-
|
39
|
-
|
32
|
+
version_requirements: !ruby/object:Gem::Requirement
|
33
|
+
requirements:
|
34
|
+
- - "~>"
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: 10.0.2
|
40
37
|
none: false
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
segments:
|
46
|
-
- 10
|
47
|
-
- 0
|
48
|
-
- 2
|
38
|
+
requirement: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - "~>"
|
41
|
+
- !ruby/object:Gem::Version
|
49
42
|
version: 10.0.2
|
43
|
+
none: false
|
44
|
+
prerelease: false
|
50
45
|
type: :development
|
51
|
-
|
52
|
-
- !ruby/object:Gem::Dependency
|
46
|
+
- !ruby/object:Gem::Dependency
|
53
47
|
name: minitest
|
54
|
-
|
55
|
-
|
48
|
+
version_requirements: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - "~>"
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 4.3.0
|
56
53
|
none: false
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
segments:
|
62
|
-
- 4
|
63
|
-
- 3
|
64
|
-
- 0
|
54
|
+
requirement: !ruby/object:Gem::Requirement
|
55
|
+
requirements:
|
56
|
+
- - "~>"
|
57
|
+
- !ruby/object:Gem::Version
|
65
58
|
version: 4.3.0
|
59
|
+
none: false
|
60
|
+
prerelease: false
|
66
61
|
type: :development
|
67
|
-
|
68
|
-
- !ruby/object:Gem::Dependency
|
62
|
+
- !ruby/object:Gem::Dependency
|
69
63
|
name: activesupport
|
70
|
-
|
71
|
-
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '3.2'
|
69
|
+
none: false
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - "~>"
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '3.2'
|
72
75
|
none: false
|
73
|
-
|
74
|
-
- - ~>
|
75
|
-
- !ruby/object:Gem::Version
|
76
|
-
hash: 3
|
77
|
-
segments:
|
78
|
-
- 3
|
79
|
-
- 2
|
80
|
-
version: "3.2"
|
76
|
+
prerelease: false
|
81
77
|
type: :development
|
82
|
-
|
83
|
-
- !ruby/object:Gem::Dependency
|
78
|
+
- !ruby/object:Gem::Dependency
|
84
79
|
name: dm-sqlite-adapter
|
85
|
-
|
86
|
-
|
80
|
+
version_requirements: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - '='
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: 1.2.0
|
87
85
|
none: false
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
segments:
|
93
|
-
- 1
|
94
|
-
- 2
|
95
|
-
- 0
|
86
|
+
requirement: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - '='
|
89
|
+
- !ruby/object:Gem::Version
|
96
90
|
version: 1.2.0
|
91
|
+
none: false
|
92
|
+
prerelease: false
|
97
93
|
type: :development
|
98
|
-
|
99
|
-
- !ruby/object:Gem::Dependency
|
94
|
+
- !ruby/object:Gem::Dependency
|
100
95
|
name: dm-migrations
|
101
|
-
|
102
|
-
|
96
|
+
version_requirements: !ruby/object:Gem::Requirement
|
97
|
+
requirements:
|
98
|
+
- - '='
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
version: 1.2.0
|
103
101
|
none: false
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
segments:
|
109
|
-
- 1
|
110
|
-
- 2
|
111
|
-
- 0
|
102
|
+
requirement: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
104
|
+
- - '='
|
105
|
+
- !ruby/object:Gem::Version
|
112
106
|
version: 1.2.0
|
107
|
+
none: false
|
108
|
+
prerelease: false
|
113
109
|
type: :development
|
114
|
-
|
115
|
-
- !ruby/object:Gem::Dependency
|
110
|
+
- !ruby/object:Gem::Dependency
|
116
111
|
name: dm-aggregates
|
117
|
-
|
118
|
-
|
112
|
+
version_requirements: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - '='
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: 1.2.0
|
119
117
|
none: false
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
segments:
|
125
|
-
- 1
|
126
|
-
- 2
|
127
|
-
- 0
|
118
|
+
requirement: !ruby/object:Gem::Requirement
|
119
|
+
requirements:
|
120
|
+
- - '='
|
121
|
+
- !ruby/object:Gem::Version
|
128
122
|
version: 1.2.0
|
123
|
+
none: false
|
124
|
+
prerelease: false
|
129
125
|
type: :development
|
130
|
-
|
131
|
-
- !ruby/object:Gem::Dependency
|
126
|
+
- !ruby/object:Gem::Dependency
|
132
127
|
name: webmock
|
133
|
-
|
134
|
-
|
128
|
+
version_requirements: !ruby/object:Gem::Requirement
|
129
|
+
requirements:
|
130
|
+
- - "~>"
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: '1.8'
|
135
133
|
none: false
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
version: "1.8"
|
134
|
+
requirement: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '1.8'
|
139
|
+
none: false
|
140
|
+
prerelease: false
|
144
141
|
type: :development
|
145
|
-
|
146
|
-
- !ruby/object:Gem::Dependency
|
142
|
+
- !ruby/object:Gem::Dependency
|
147
143
|
name: copyright-header
|
148
|
-
|
149
|
-
|
144
|
+
version_requirements: !ruby/object:Gem::Requirement
|
145
|
+
requirements:
|
146
|
+
- - "~>"
|
147
|
+
- !ruby/object:Gem::Version
|
148
|
+
version: '1.0'
|
150
149
|
none: false
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
version: "1.0"
|
150
|
+
requirement: !ruby/object:Gem::Requirement
|
151
|
+
requirements:
|
152
|
+
- - "~>"
|
153
|
+
- !ruby/object:Gem::Version
|
154
|
+
version: '1.0'
|
155
|
+
none: false
|
156
|
+
prerelease: false
|
159
157
|
type: :development
|
160
|
-
|
161
|
-
- !ruby/object:Gem::Dependency
|
158
|
+
- !ruby/object:Gem::Dependency
|
162
159
|
name: json
|
163
|
-
|
164
|
-
|
160
|
+
version_requirements: !ruby/object:Gem::Requirement
|
161
|
+
requirements:
|
162
|
+
- - "~>"
|
163
|
+
- !ruby/object:Gem::Version
|
164
|
+
version: '1.7'
|
165
|
+
none: false
|
166
|
+
requirement: !ruby/object:Gem::Requirement
|
167
|
+
requirements:
|
168
|
+
- - "~>"
|
169
|
+
- !ruby/object:Gem::Version
|
170
|
+
version: '1.7'
|
165
171
|
none: false
|
166
|
-
|
167
|
-
- - ~>
|
168
|
-
- !ruby/object:Gem::Version
|
169
|
-
hash: 1
|
170
|
-
segments:
|
171
|
-
- 1
|
172
|
-
- 7
|
173
|
-
version: "1.7"
|
172
|
+
prerelease: false
|
174
173
|
type: :development
|
175
|
-
version_requirements: *id010
|
176
174
|
description: helper sync data between miniapps or communicate wth realtime rest-services
|
177
|
-
email:
|
175
|
+
email:
|
178
176
|
- m.kristian@web.de
|
179
177
|
executables: []
|
180
|
-
|
181
178
|
extensions: []
|
182
|
-
|
183
179
|
extra_rdoc_files: []
|
184
|
-
|
185
|
-
files:
|
180
|
+
files:
|
186
181
|
- lib/ixtlan-remote.rb
|
187
182
|
- lib/ixtlan/remote.rb
|
183
|
+
- lib/ixtlan/passwords.rb
|
184
|
+
- lib/ixtlan/railtie.rb~
|
185
|
+
- lib/ixtlan/passwords.rb~
|
188
186
|
- lib/ixtlan/user_management/group_model.rb~
|
189
187
|
- lib/ixtlan/user_management/application_model.rb~
|
190
188
|
- lib/ixtlan/user_management/user_serializer.rb
|
@@ -252,9 +250,6 @@ files:
|
|
252
250
|
- lib/ixtlan/remote/translation.rake~
|
253
251
|
- lib/ixtlan/remote/updater.rb~
|
254
252
|
- lib/ixtlan/remote/sync.rb~
|
255
|
-
- lib/ixtlan/passwords.rb
|
256
|
-
- lib/ixtlan/railtie.rb~
|
257
|
-
- lib/ixtlan/passwords.rb~
|
258
253
|
- spec/access_controller_spec.rb~
|
259
254
|
- spec/model_helpers_spec.rb~
|
260
255
|
- spec/model_helpers_spec.rb
|
@@ -272,39 +267,33 @@ files:
|
|
272
267
|
- README.md
|
273
268
|
- Gemfile
|
274
269
|
homepage: https://github.com/mkristian/ixtlan-remote
|
275
|
-
licenses:
|
270
|
+
licenses:
|
276
271
|
- AGPL3
|
277
|
-
post_install_message:
|
272
|
+
post_install_message:
|
278
273
|
rdoc_options: []
|
279
|
-
|
280
|
-
require_paths:
|
274
|
+
require_paths:
|
281
275
|
- lib
|
282
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
283
|
-
|
284
|
-
requirements:
|
276
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
277
|
+
requirements:
|
285
278
|
- - ">="
|
286
|
-
- !ruby/object:Gem::Version
|
287
|
-
|
288
|
-
|
289
|
-
- 0
|
290
|
-
version: "0"
|
291
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
279
|
+
- !ruby/object:Gem::Version
|
280
|
+
version: !binary |-
|
281
|
+
MA==
|
292
282
|
none: false
|
293
|
-
|
283
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
284
|
+
requirements:
|
294
285
|
- - ">="
|
295
|
-
- !ruby/object:Gem::Version
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
version: "0"
|
286
|
+
- !ruby/object:Gem::Version
|
287
|
+
version: !binary |-
|
288
|
+
MA==
|
289
|
+
none: false
|
300
290
|
requirements: []
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
signing_key:
|
291
|
+
rubyforge_project:
|
292
|
+
rubygems_version: 1.8.24
|
293
|
+
signing_key:
|
305
294
|
specification_version: 3
|
306
295
|
summary: helper for remote rest-services
|
307
|
-
test_files:
|
296
|
+
test_files:
|
308
297
|
- spec/model_helpers_spec.rb
|
309
298
|
- spec/access_controller_spec.rb
|
310
299
|
- spec/resource_spec.rb
|