ixtlan 0.4.0.pre5 → 0.4.0
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/History.txt +49 -0
- data/MIT-LICENSE +20 -0
- data/README.txt +86 -0
- data/Rakefile +59 -0
- data/lib/dm-serializer/to_xml.rb +10 -4
- data/lib/ixtlan/controllers/audits_controller.rb +6 -1
- data/lib/ixtlan/controllers/authentications_controller.rb +5 -1
- data/lib/ixtlan/controllers/domains_controller.rb +11 -7
- data/lib/ixtlan/controllers/groups_controller.rb +28 -7
- data/lib/ixtlan/controllers/locales_controller.rb +11 -7
- data/lib/ixtlan/controllers/search_query.rb +28 -12
- data/lib/ixtlan/controllers/users_controller.rb +1 -1
- data/lib/ixtlan/controllers/word_bundles_controller.rb +9 -3
- data/lib/ixtlan/guard.rb +17 -4
- data/lib/ixtlan/models/authentication.rb +8 -2
- data/lib/ixtlan/models/configuration.rb +14 -1
- data/lib/ixtlan/models/group.rb +14 -1
- data/lib/ixtlan/models/i18n_text.rb +6 -2
- data/lib/ixtlan/models/phrase.rb +11 -6
- data/lib/ixtlan/models/translation.rb +6 -2
- data/lib/ixtlan/models/user.rb +29 -2
- data/lib/ixtlan/modified_by.rb +1 -2
- data/lib/ixtlan/rails/error_handling.rb +1 -1
- data/lib/ixtlan/version.rb +1 -1
- data/lib/ixtlan/version.rb.errors +0 -0
- data/spec/authentication_spec.rb +16 -9
- data/spec/guard_spec.rb +8 -7
- data/spec/modified_by_spec.rb +9 -8
- data/spec/optimistic_persistence_spec.rb +2 -2
- data/spec/phrase_spec.rb +45 -49
- data/spec/session_timeout_spec.rb +1 -1
- data/spec/spec_helper.rb +66 -24
- data/spec/text_collection_spec.rb +23 -25
- data/spec/text_spec.rb +8 -8
- data/spec/unrestful_authentication_spec.rb +2 -2
- data/spec/user_logger_spec.rb +1 -0
- data/spec/user_spec.rb +5 -8
- metadata +37 -19
data/spec/spec_helper.rb
CHANGED
@@ -2,6 +2,7 @@ require 'rubygems'
|
|
2
2
|
lib_path = (Pathname(__FILE__).dirname.parent.expand_path + 'lib').to_s
|
3
3
|
$LOAD_PATH.unshift lib_path unless $LOAD_PATH.include?(lib_path)
|
4
4
|
|
5
|
+
require 'extlib'
|
5
6
|
require 'dm-core'
|
6
7
|
require 'dm-validations'
|
7
8
|
require 'dm-serializer'
|
@@ -9,25 +10,50 @@ require 'dm-timestamps'
|
|
9
10
|
|
10
11
|
require 'slf4r'
|
11
12
|
|
12
|
-
require 'ixtlan
|
13
|
-
require 'ixtlan
|
14
|
-
require 'ixtlan
|
15
|
-
require 'ixtlan
|
16
|
-
|
17
|
-
require 'ixtlan
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
require 'ixtlan
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
require 'ixtlan
|
26
|
-
|
27
|
-
|
13
|
+
require 'ixtlan/models'
|
14
|
+
require 'ixtlan/modified_by'
|
15
|
+
require 'ixtlan/passwords'
|
16
|
+
require 'ixtlan/digest'
|
17
|
+
|
18
|
+
require 'ixtlan/models/locale'
|
19
|
+
class Locale
|
20
|
+
include Ixtlan::Models::Locale
|
21
|
+
end
|
22
|
+
require 'ixtlan/models/domain'
|
23
|
+
class Domain
|
24
|
+
include Ixtlan::Models::Domain
|
25
|
+
end
|
26
|
+
require 'ixtlan/models/group'
|
27
|
+
class Group
|
28
|
+
include Ixtlan::Models::Group
|
29
|
+
end
|
30
|
+
require 'ixtlan/models/user'
|
31
|
+
class User
|
32
|
+
include Ixtlan::Models::User
|
33
|
+
end
|
34
|
+
require 'ixtlan/models/configuration'
|
35
|
+
class Configuration
|
36
|
+
include Ixtlan::Models::Configuration
|
37
|
+
end
|
38
|
+
require 'ixtlan/models/audit'
|
39
|
+
class Audit
|
40
|
+
include Ixtlan::Models::Audit
|
41
|
+
end
|
42
|
+
require 'ixtlan/models/group_user'
|
43
|
+
require 'ixtlan/models/domain_group_user'
|
44
|
+
require 'ixtlan/models/group_locale_user'
|
45
|
+
require 'ixtlan/models/role'
|
46
|
+
require 'ixtlan/models/permission'
|
47
|
+
require 'ixtlan/models/i18n_text'
|
48
|
+
class I18nText
|
49
|
+
include Ixtlan::Models::I18nText
|
50
|
+
end
|
28
51
|
|
29
52
|
#hide log output
|
30
|
-
Slf4r::LoggerFacade4RubyLogger.file = StringIO.new
|
53
|
+
Slf4r::LoggerFacade4RubyLogger.file = StringIO.new unless defined?(JRUBY_VERSION)
|
54
|
+
|
55
|
+
|
56
|
+
require 'ixtlan/user_logger'
|
31
57
|
|
32
58
|
module ActiveSupport
|
33
59
|
class SecureRandom
|
@@ -51,6 +77,7 @@ module ActionController
|
|
51
77
|
def self.filters
|
52
78
|
@filters
|
53
79
|
end
|
80
|
+
|
54
81
|
end
|
55
82
|
end
|
56
83
|
class Request
|
@@ -65,18 +92,18 @@ class Controller
|
|
65
92
|
include ActionController::Base
|
66
93
|
def initialize
|
67
94
|
@params = {}
|
68
|
-
u =
|
95
|
+
u = User.first(:login => :marvin)
|
69
96
|
if u.nil?
|
70
|
-
u =
|
97
|
+
u = User.new(:login => :marvin, :name => 'marvin the robot', :email=> "marvin@universe.example.com", :language => "xx", :id => 111, :created_at => DateTime.now, :updated_at => DateTime.now)
|
71
98
|
if(u.respond_to? :created_by_id)
|
72
|
-
u.created_by_id =
|
73
|
-
u.updated_by_id =
|
99
|
+
u.created_by_id = 111
|
100
|
+
u.updated_by_id = 111
|
74
101
|
end
|
75
102
|
u.save!
|
76
103
|
end
|
77
104
|
@password = u.reset_password
|
78
105
|
u.save!
|
79
|
-
g =
|
106
|
+
g = Group.first(:name => :admin) || Group.create(:name => :admin, :current_user => u)
|
80
107
|
#p g.errors
|
81
108
|
#gg = Ixtlan::Models::Group.new(:name => :admin2, :current_user => u)
|
82
109
|
#gg.save
|
@@ -85,8 +112,8 @@ class Controller
|
|
85
112
|
Ixtlan::Models::GroupUser.all.destroy!
|
86
113
|
Ixtlan::Models::GroupLocaleUser.all.destroy!
|
87
114
|
u.groups << g
|
88
|
-
g.locales <<
|
89
|
-
g.locales <<
|
115
|
+
g.locales << Locale.default
|
116
|
+
g.locales << (Locale.first(:code => "en") || Locale.create(:code => "en", :current_user => u))
|
90
117
|
g.save
|
91
118
|
@user = u
|
92
119
|
end
|
@@ -101,6 +128,10 @@ class Controller
|
|
101
128
|
@rendered = true
|
102
129
|
end
|
103
130
|
|
131
|
+
def cache_headers(*args)
|
132
|
+
p *args
|
133
|
+
end
|
134
|
+
|
104
135
|
def session_timeout
|
105
136
|
a = Object.new
|
106
137
|
def a.minutes
|
@@ -123,6 +154,16 @@ class Controller
|
|
123
154
|
end
|
124
155
|
|
125
156
|
DataMapper.setup(:default, :adapter => :in_memory)
|
157
|
+
root = User.new(:login => "marvin2", :name => 'marvin the robot', :email=> "marvin@universe.example.com", :language => "xx", :id => 1, :created_at => DateTime.now, :updated_at => DateTime.now)
|
158
|
+
if(root.respond_to? :created_by_id)
|
159
|
+
root.created_by_id = 1
|
160
|
+
root.updated_by_id = 1
|
161
|
+
end
|
162
|
+
root.save!
|
163
|
+
|
164
|
+
Locale.create(:code => "DEFAULT", :current_user => root)
|
165
|
+
Locale.create(:code => "ALL", :current_user => root)
|
166
|
+
Domain.create(:name => "ALL", :current_user => root)
|
126
167
|
|
127
168
|
class String
|
128
169
|
def cleanup
|
@@ -161,6 +202,7 @@ end
|
|
161
202
|
|
162
203
|
class Object
|
163
204
|
def self.full_const_get(clazz, ref = Object)
|
205
|
+
clazz = clazz.dup
|
164
206
|
if clazz =~ /::/
|
165
207
|
clazz.sub!(/^::/, '')
|
166
208
|
ref = ref.const_get(clazz.sub(/::.*/, ''))
|
@@ -2,8 +2,6 @@
|
|
2
2
|
require 'pathname'
|
3
3
|
require Pathname(__FILE__).dirname + 'spec_helper.rb'
|
4
4
|
|
5
|
-
require 'ixtlan/controllers/texts_controller'
|
6
|
-
|
7
5
|
require 'ixtlan/models/i18n_text'
|
8
6
|
require 'ixtlan/models/word'
|
9
7
|
require 'ixtlan/models/translation'
|
@@ -13,29 +11,29 @@ describe "Ixtlan::Models::TextCollection" do
|
|
13
11
|
len = 6
|
14
12
|
|
15
13
|
before(:all) do
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
14
|
+
current_user = User.first
|
15
|
+
Locale.all.destroy!
|
16
|
+
Locale.create(:id => 1, :code => "DEFAULT", :current_user => current_user)
|
17
|
+
I18nText.all.destroy!
|
20
18
|
(1..len).each do |i|
|
21
|
-
locale =
|
22
|
-
text =
|
19
|
+
locale = Locale.first(:id => 10 + len + i, :code => "c#{(96 +i).chr}") || Locale.create(:id => 10 + len + i, :code => "c#{(96 +i).chr}", :current_user => current_user)
|
20
|
+
text = I18nText.create(:code => "code_#{i}",
|
23
21
|
:text => "text_#{i}",
|
24
|
-
:current_user =>
|
25
|
-
:locale =>
|
22
|
+
:current_user => current_user,
|
23
|
+
:locale => Locale.default,
|
26
24
|
:updated_at => DateTime.now,
|
27
|
-
:updated_by =>
|
28
|
-
text.approve(:current_user =>
|
25
|
+
:updated_by => current_user)
|
26
|
+
text.approve(:current_user => current_user)
|
29
27
|
(1..len).each do |j|
|
30
|
-
text =
|
31
|
-
:current_user =>
|
32
|
-
text.approve(:current_user =>
|
28
|
+
text = I18nText.create(:code => "code_#{i}", :text => "text_#{i}_#{j}",
|
29
|
+
:current_user => current_user, :locale => locale, :updated_at => DateTime.now, :updated_by => current_user)
|
30
|
+
text.approve(:current_user => current_user) unless j == len
|
33
31
|
end
|
34
32
|
end
|
35
33
|
end
|
36
34
|
|
37
35
|
it "should have #{len} second latest approved" do
|
38
|
-
set =
|
36
|
+
set = I18nText.second_latest_approved
|
39
37
|
set.size.should == len
|
40
38
|
set.each do |t|
|
41
39
|
t.version.should_not be_nil
|
@@ -45,7 +43,7 @@ describe "Ixtlan::Models::TextCollection" do
|
|
45
43
|
end
|
46
44
|
|
47
45
|
it "should have #{len * 2} latest approved" do
|
48
|
-
set =
|
46
|
+
set = I18nText.latest_approved
|
49
47
|
set.size.should == len * 2
|
50
48
|
set.each do |t|
|
51
49
|
t.version.should_not be_nil
|
@@ -55,7 +53,7 @@ describe "Ixtlan::Models::TextCollection" do
|
|
55
53
|
end
|
56
54
|
|
57
55
|
it "should have #{len} not approved" do
|
58
|
-
set =
|
56
|
+
set = I18nText.not_approved
|
59
57
|
set.size.should == len
|
60
58
|
set.each do |t|
|
61
59
|
t.version.should be_nil
|
@@ -65,22 +63,22 @@ describe "Ixtlan::Models::TextCollection" do
|
|
65
63
|
end
|
66
64
|
|
67
65
|
it "should have #{len * len} approved" do
|
68
|
-
|
66
|
+
I18nText.approved.size.should == len * len
|
69
67
|
end
|
70
68
|
|
71
69
|
it "should have #{len * (len - 3)} old approved" do
|
72
|
-
|
70
|
+
I18nText.all(:current => false, :previous => false, :version.not => nil).size.should == len * (len - 3)
|
73
71
|
end
|
74
72
|
|
75
73
|
it "should have right number of approved when filterd by locale " do
|
76
|
-
locale =
|
77
|
-
|
78
|
-
|
79
|
-
|
74
|
+
locale = Locale.first_or_create(:code => "cb")
|
75
|
+
I18nText.approved(:locale => locale).size.should == len - 1
|
76
|
+
I18nText.latest_approved(:locale => locale).size.should == 1
|
77
|
+
I18nText.not_approved(:locale => locale).size.should == 1
|
80
78
|
end
|
81
79
|
|
82
80
|
it 'should setup the translation map' do
|
83
|
-
locale =
|
81
|
+
locale = Locale.first_or_create(:code => "cb")
|
84
82
|
map = Ixtlan::Models::Translation.map_for(:locale => locale)
|
85
83
|
map.size.should == 1
|
86
84
|
map.values[0].to_xml.gsub(/ type='[a-z:]*'/, '').gsub(/[0-9-]+T[0-9:]+\+[0-9:]+/, 'date').should == "<translation><text>text_2_5</text><previous_text>text_2_4</previous_text><approved_at>date</approved_at><approved_by_id>1</approved_by_id></translation>"
|
data/spec/text_spec.rb
CHANGED
@@ -12,10 +12,10 @@ describe Ixtlan::Models::I18nText do
|
|
12
12
|
|
13
13
|
before(:each) do
|
14
14
|
@controller = Controller.new
|
15
|
-
|
16
|
-
@approved =
|
15
|
+
I18nText.all.destroy!
|
16
|
+
@approved = I18nText.create(:code => "code", :text => "other text", :current_user => @controller.current_user, :locale => Locale.default)
|
17
17
|
@approved.approve(:current_user => @controller.current_user)
|
18
|
-
@text =
|
18
|
+
@text = I18nText.create(:code => "code", :text => "text", :current_user => @controller.current_user, :locale => Locale.default)
|
19
19
|
end
|
20
20
|
|
21
21
|
it "should create default" do
|
@@ -30,15 +30,15 @@ describe Ixtlan::Models::I18nText do
|
|
30
30
|
end
|
31
31
|
|
32
32
|
it 'should create translation' do
|
33
|
-
|
33
|
+
I18nText.create(:code => "code", :text => "text_en", :current_user => @controller.current_user, :locale => Locale.first_or_create(:code => 'en')).new?.should be_false
|
34
34
|
end
|
35
35
|
|
36
36
|
it 'should not create' do
|
37
|
-
|
37
|
+
I18nText.create(:code => "code2", :text => "text", :current_user => @controller.current_user, :locale => Locale.first_or_create(:code => 'en')).new?.should be_true
|
38
38
|
end
|
39
39
|
|
40
40
|
it 'should update' do
|
41
|
-
text =
|
41
|
+
text = I18nText.create(:code => "update_code", :text => "text", :current_user => @controller.current_user, :locale => Locale.default)
|
42
42
|
text.update(:text => 'new text', :current_user => @controller.current_user)
|
43
43
|
text.should be_true
|
44
44
|
text.version.should be_nil
|
@@ -48,7 +48,7 @@ describe Ixtlan::Models::I18nText do
|
|
48
48
|
end
|
49
49
|
|
50
50
|
it 'should approve' do
|
51
|
-
text =
|
51
|
+
text = I18nText.create(:code => "apporved_code", :text => "text", :current_user => @controller.current_user, :locale => Locale.default)
|
52
52
|
text.approved?.should be_false
|
53
53
|
text.approve(:current_user => @controller.current_user).should be_true
|
54
54
|
text.version.should_not be_nil
|
@@ -98,7 +98,7 @@ describe Ixtlan::Models::I18nText do
|
|
98
98
|
end
|
99
99
|
|
100
100
|
it 'should produce xml via the Word model' do
|
101
|
-
text =
|
101
|
+
text = I18nText.create(:code => "word", :text => "word text", :current_user => @controller.current_user, :locale => Locale.default)
|
102
102
|
Ixtlan::Models::Word.first(:code => "word").to_xml.should == "<word><code>word</code><text>word text</text></word>"
|
103
103
|
Ixtlan::Models::Word.all(:id => @approved.id).to_xml(:collection_element_name => "words").should == "<words type='array'><word><code>code</code><text>other text</text></word></words>"
|
104
104
|
end
|
@@ -2,8 +2,8 @@
|
|
2
2
|
require 'pathname'
|
3
3
|
require Pathname(__FILE__).dirname + 'spec_helper.rb'
|
4
4
|
|
5
|
-
require 'ixtlan
|
6
|
-
require 'ixtlan
|
5
|
+
require 'ixtlan/models/authentication'
|
6
|
+
require 'ixtlan/rails/unrestful_authentication'
|
7
7
|
|
8
8
|
class Controller
|
9
9
|
|
data/spec/user_logger_spec.rb
CHANGED
data/spec/user_spec.rb
CHANGED
@@ -1,10 +1,7 @@
|
|
1
1
|
require 'pathname'
|
2
2
|
require Pathname(__FILE__).dirname + 'spec_helper.rb'
|
3
|
+
require 'dm-migrations'
|
3
4
|
|
4
|
-
User = Ixtlan::Models::User
|
5
|
-
Group = Ixtlan::Models::Group
|
6
|
-
Locale = Ixtlan::Models::Locale
|
7
|
-
Domain = Ixtlan::Models::Domain
|
8
5
|
describe Ixtlan::Models::User do
|
9
6
|
|
10
7
|
before(:all) do
|
@@ -91,7 +88,7 @@ describe Ixtlan::Models::User do
|
|
91
88
|
end
|
92
89
|
|
93
90
|
it 'should be able to create an user without groups' do
|
94
|
-
u = User.new(:login => '
|
91
|
+
u = User.new(:login => 'user_no_groups', :email => 'user_no_groups@example.com', :name => 'user', :current_user => @root)
|
95
92
|
u.update_all_children(nil)
|
96
93
|
u.save
|
97
94
|
|
@@ -101,7 +98,7 @@ describe Ixtlan::Models::User do
|
|
101
98
|
|
102
99
|
describe 'user_admin and locales/domains_admin' do
|
103
100
|
before(:each) do
|
104
|
-
@admin = User.create(:login => '
|
101
|
+
@admin = User.create(:login => 'admin_user', :email => 'admin_user@example.com', :name => 'admin', :current_user => @root)
|
105
102
|
@admin.groups << @users
|
106
103
|
@admin.groups << @locales
|
107
104
|
@admin.groups << @domains
|
@@ -149,7 +146,7 @@ describe Ixtlan::Models::User do
|
|
149
146
|
end
|
150
147
|
|
151
148
|
describe 'user_admin without locales/domains' do
|
152
|
-
before(:
|
149
|
+
before(:all) do
|
153
150
|
@admin = User.create(:login => 'admin', :email => 'admin@example.com', :name => 'admin', :current_user => @root)
|
154
151
|
@admin.groups << @users
|
155
152
|
@admin.save
|
@@ -171,7 +168,7 @@ describe Ixtlan::Models::User do
|
|
171
168
|
end
|
172
169
|
|
173
170
|
it 'should be able to create an user without disallowed groups and locales' do
|
174
|
-
u = User.new(:login => '
|
171
|
+
u = User.new(:login => 'user_admin', :email => 'user_admin@example.com', :name => 'user', :current_user => @admin)
|
175
172
|
u.update_all_children(@groups)
|
176
173
|
u.save
|
177
174
|
|
metadata
CHANGED
@@ -1,13 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ixtlan
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
4
|
+
prerelease: false
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 4
|
8
8
|
- 0
|
9
|
-
|
10
|
-
version: 0.4.0.pre5
|
9
|
+
version: 0.4.0
|
11
10
|
platform: ruby
|
12
11
|
authors:
|
13
12
|
- mkristian
|
@@ -15,7 +14,7 @@ autorequire:
|
|
15
14
|
bindir: bin
|
16
15
|
cert_chain: []
|
17
16
|
|
18
|
-
date: 2010-
|
17
|
+
date: 2010-08-02 00:00:00 +05:30
|
19
18
|
default_executable:
|
20
19
|
dependencies:
|
21
20
|
- !ruby/object:Gem::Dependency
|
@@ -79,13 +78,13 @@ dependencies:
|
|
79
78
|
prerelease: false
|
80
79
|
requirement: &id005 !ruby/object:Gem::Requirement
|
81
80
|
requirements:
|
82
|
-
- -
|
81
|
+
- - ~>
|
83
82
|
- !ruby/object:Gem::Version
|
84
83
|
segments:
|
85
84
|
- 0
|
86
85
|
- 3
|
87
|
-
-
|
88
|
-
version: 0.3.
|
86
|
+
- 0
|
87
|
+
version: 0.3.0
|
89
88
|
type: :runtime
|
90
89
|
version_requirements: *id005
|
91
90
|
- !ruby/object:Gem::Dependency
|
@@ -131,9 +130,23 @@ dependencies:
|
|
131
130
|
type: :runtime
|
132
131
|
version_requirements: *id008
|
133
132
|
- !ruby/object:Gem::Dependency
|
134
|
-
name:
|
133
|
+
name: dm-sqlite-adapter
|
135
134
|
prerelease: false
|
136
135
|
requirement: &id009 !ruby/object:Gem::Requirement
|
136
|
+
requirements:
|
137
|
+
- - ~>
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
segments:
|
140
|
+
- 1
|
141
|
+
- 0
|
142
|
+
- 0
|
143
|
+
version: 1.0.0
|
144
|
+
type: :development
|
145
|
+
version_requirements: *id009
|
146
|
+
- !ruby/object:Gem::Dependency
|
147
|
+
name: rspec
|
148
|
+
prerelease: false
|
149
|
+
requirement: &id010 !ruby/object:Gem::Requirement
|
137
150
|
requirements:
|
138
151
|
- - ~>
|
139
152
|
- !ruby/object:Gem::Version
|
@@ -143,7 +156,7 @@ dependencies:
|
|
143
156
|
- 0
|
144
157
|
version: 1.3.0
|
145
158
|
type: :development
|
146
|
-
version_requirements: *
|
159
|
+
version_requirements: *id010
|
147
160
|
description: this is set of rails and datamapper plugins for setting up a little more advanced rails application then the default rails generator does. the focus is on security and privacy as well a complete restful xml support.
|
148
161
|
email:
|
149
162
|
- m.kristian@web.de
|
@@ -151,9 +164,14 @@ executables: []
|
|
151
164
|
|
152
165
|
extensions: []
|
153
166
|
|
154
|
-
extra_rdoc_files:
|
155
|
-
|
167
|
+
extra_rdoc_files:
|
168
|
+
- History.txt
|
169
|
+
- README.txt
|
156
170
|
files:
|
171
|
+
- MIT-LICENSE
|
172
|
+
- History.txt
|
173
|
+
- README.txt
|
174
|
+
- Rakefile
|
157
175
|
- lib/models.rb
|
158
176
|
- lib/ixtlan.rb
|
159
177
|
- lib/dm-serializer.rb
|
@@ -180,6 +198,7 @@ files:
|
|
180
198
|
- lib/ixtlan/modified_by.rb
|
181
199
|
- lib/ixtlan/optimistic_persistence_module.rb
|
182
200
|
- lib/ixtlan/optimistic_persistence_validation.rb
|
201
|
+
- lib/ixtlan/version.rb.errors
|
183
202
|
- lib/ixtlan/guard.rb
|
184
203
|
- lib/ixtlan/passwords.rb
|
185
204
|
- lib/ixtlan/monkey_patches.rb
|
@@ -263,12 +282,13 @@ files:
|
|
263
282
|
- spec/passwords_spec.rb
|
264
283
|
- spec/guards/samples.rb
|
265
284
|
has_rdoc: true
|
266
|
-
homepage: http://github.com/mkristian/ixtlan-core
|
285
|
+
homepage: http://github.com/mkristian/ixtlan/ixtlan-core
|
267
286
|
licenses:
|
268
287
|
- MIT-LICENSE
|
269
288
|
post_install_message:
|
270
|
-
rdoc_options:
|
271
|
-
|
289
|
+
rdoc_options:
|
290
|
+
- --main
|
291
|
+
- README.txt
|
272
292
|
require_paths:
|
273
293
|
- lib
|
274
294
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -280,13 +300,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
280
300
|
version: "0"
|
281
301
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
282
302
|
requirements:
|
283
|
-
- - "
|
303
|
+
- - ">="
|
284
304
|
- !ruby/object:Gem::Version
|
285
305
|
segments:
|
286
|
-
-
|
287
|
-
|
288
|
-
- 1
|
289
|
-
version: 1.3.1
|
306
|
+
- 0
|
307
|
+
version: "0"
|
290
308
|
requirements: []
|
291
309
|
|
292
310
|
rubyforge_project:
|