fat_free_crm 0.13.4 → 0.13.5
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of fat_free_crm might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.teatro.yml +3 -0
- data/.travis.yml +11 -4
- data/Capfile +25 -2
- data/Dockerfile +18 -0
- data/Gemfile +6 -2
- data/Gemfile.lock +108 -91
- data/README.md +6 -4
- data/app/assets/javascripts/crm.js.coffee +4 -1
- data/app/assets/javascripts/crm_select2.js.coffee +4 -2
- data/app/controllers/users_controller.rb +1 -1
- data/app/helpers/application_helper.rb +15 -6
- data/app/helpers/tags_helper.rb +3 -3
- data/app/mailers/user_mailer.rb +1 -1
- data/app/models/setting.rb +1 -1
- data/app/models/users/user.rb +1 -1
- data/app/views/authentications/new.html.haml +0 -12
- data/app/views/contacts/_index_full.html.haml +1 -1
- data/app/views/contacts/_section_general.html.haml +6 -3
- data/app/views/fields/_group_view.html.haml +2 -1
- data/app/views/home/_activity.html.haml +1 -1
- data/app/views/layouts/500.html.haml +0 -12
- data/config/database.postgres.docker.yml +25 -0
- data/config/deploy.example.rb +68 -41
- data/config/initializers/custom_field_ransack_translations.rb +6 -4
- data/config/locales/cz_fat_free_crm.yml +1 -1
- data/config/locales/de_fat_free_crm.yml +1 -1
- data/config/locales/en-GB_fat_free_crm.yml +201 -28
- data/config/locales/en-GB_ransack.yml +91 -0
- data/config/locales/en-US_fat_free_crm.yml +1 -1
- data/config/locales/es_fat_free_crm.yml +1 -1
- data/config/locales/fr-CA_fat_free_crm.yml +1 -1
- data/config/locales/fr_fat_free_crm.yml +1 -1
- data/config/locales/it_fat_free_crm.yml +1 -1
- data/config/locales/ja_fat_free_crm.yml +1 -1
- data/config/locales/ja_ransack.yml +91 -0
- data/config/locales/pl_fat_free_crm.yml +1 -1
- data/config/locales/pt-BR_fat_free_crm.yml +1 -1
- data/config/locales/ru_fat_free_crm.yml +1 -1
- data/config/locales/sv-SE_fat_free_crm.yml +1 -1
- data/config/locales/th_fat_free_crm.yml +1 -1
- data/config/locales/zh-CN_fat_free_crm.yml +430 -66
- data/config/locales/zh-CN_ransack.yml +91 -0
- data/config/settings.default.yml +9 -8
- data/db/demo/field_groups.yml +14 -0
- data/db/migrate/20140916011927_add_created_at_index_on_versions.rb +5 -0
- data/db/migrate/20140916012922_add_indexes_to_model_associations.rb +6 -0
- data/db/migrate/20141126031837_increase_email_to254_chars.rb +21 -0
- data/db/schema.rb +27 -22
- data/fig.yml +13 -0
- data/lib/fat_free_crm/callback.rb +9 -4
- data/lib/fat_free_crm/gem_dependencies.rb +1 -0
- data/lib/fat_free_crm/version.rb +1 -1
- data/spec/factories/user_factories.rb +4 -4
- data/spec/models/users/user_spec.rb +13 -0
- data/spec/views/admin/users/create.js.haml_spec.rb +0 -2
- metadata +14 -3
@@ -0,0 +1,91 @@
|
|
1
|
+
---
|
2
|
+
zh-CN:
|
3
|
+
ransack:
|
4
|
+
search: 搜索
|
5
|
+
predicate: predicate
|
6
|
+
and: 和
|
7
|
+
or: 或
|
8
|
+
any: 任何
|
9
|
+
all: 所有
|
10
|
+
combinator: 组合器
|
11
|
+
attribute: 属性
|
12
|
+
value: 值
|
13
|
+
condition: 条件
|
14
|
+
sort: 排序
|
15
|
+
asc: 升序
|
16
|
+
desc: 降序
|
17
|
+
submit: 搜索
|
18
|
+
add_group: 增加过滤器组
|
19
|
+
group_first: Show results where %{combinator} of the following match
|
20
|
+
group_rest: ! '...and where %{combinator} of the following match'
|
21
|
+
add_condition: 增加一个过滤器
|
22
|
+
remove_condition: 移除过滤器
|
23
|
+
predicates:
|
24
|
+
eq: 等于
|
25
|
+
eq_any: 等于任何
|
26
|
+
eq_all: 等于所有
|
27
|
+
not_eq: 不等于
|
28
|
+
not_eq_any: 不等于任何
|
29
|
+
not_eq_all: 不等于所有
|
30
|
+
matches: 匹配
|
31
|
+
matches_any: 匹配任何
|
32
|
+
matches_all: 匹配所有
|
33
|
+
does_not_match: 不匹配
|
34
|
+
does_not_match_any: 不匹配任何
|
35
|
+
does_not_match_all: 不匹配所有
|
36
|
+
lt: 少于
|
37
|
+
lt_any: 少于任何
|
38
|
+
lt_all: 少于所有
|
39
|
+
lteq: 少于或等于
|
40
|
+
lteq_any: 少于或等于任何
|
41
|
+
lteq_all: 少于或等于所有
|
42
|
+
gt: 大于
|
43
|
+
gt_any: 大于任何
|
44
|
+
gt_all: 大于所有
|
45
|
+
gteq: 大于或者等于
|
46
|
+
gteq_any: 大于或者等于任何
|
47
|
+
gteq_all: 大于或者等于所有
|
48
|
+
in: 包含于
|
49
|
+
in_any: 包含于任何
|
50
|
+
in_all: 包含于所有
|
51
|
+
not_in: 不包含于
|
52
|
+
not_in_any: 不包含于任何
|
53
|
+
not_in_all: 不包含于所有
|
54
|
+
cont: 包含
|
55
|
+
cont_any: 包含任何
|
56
|
+
cont_all: 包含所有
|
57
|
+
not_cont: 不包含
|
58
|
+
not_cont_any: 不包含任何
|
59
|
+
not_cont_all: 不包含所有
|
60
|
+
start: 开始于
|
61
|
+
start_any: 开始于任何
|
62
|
+
start_all: 开始于所有
|
63
|
+
not_start: 不开始于
|
64
|
+
not_start_any: 不开始于任何
|
65
|
+
not_start_all: 不开始于所有
|
66
|
+
end: 结束于
|
67
|
+
end_any: 结束于任何
|
68
|
+
end_all: 结束于所有
|
69
|
+
not_end: 不结束于
|
70
|
+
not_end_any: 不结束于任何
|
71
|
+
not_end_all: 不结束于所有
|
72
|
+
'true': 为 true
|
73
|
+
'false': 为 false
|
74
|
+
present: is present
|
75
|
+
blank: 为空
|
76
|
+
'null': 为 null
|
77
|
+
not_null: 不为 null
|
78
|
+
alt:
|
79
|
+
date:
|
80
|
+
lt: 在之前
|
81
|
+
lt_any: 在任何之前
|
82
|
+
lt_all: 在所有之前
|
83
|
+
lteq: is before or on
|
84
|
+
lteq_any: is before or on any
|
85
|
+
lteq_all: is before or on all
|
86
|
+
gt: 在之后
|
87
|
+
gt_any: 在任何之后
|
88
|
+
gt_all: 在所有之后
|
89
|
+
gteq: is after or on
|
90
|
+
gteq_any: is after or on any
|
91
|
+
gteq_all: is after or on all
|
data/config/settings.default.yml
CHANGED
@@ -63,15 +63,16 @@
|
|
63
63
|
|
64
64
|
|
65
65
|
# Settings for outgoing email (SMTP)
|
66
|
+
# Uncomment to set up for your specific mailer
|
66
67
|
#------------------------------------------------------------------------------
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
68
|
+
#:smtp:
|
69
|
+
#:address : "" # e.g. smtp.gmail.com
|
70
|
+
#:from : "" # e.g. no-reply@your-domain.com
|
71
|
+
#:enable_starttls_auto : true
|
72
|
+
#:port : "587"
|
73
|
+
#:authentication : :plain
|
74
|
+
#:user_name : ""
|
75
|
+
#:password : ""
|
75
76
|
|
76
77
|
# Settings for the Email dropbox (IMAP)
|
77
78
|
# - Connection settings for the IMAP account, server and folders.
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<%
|
2
|
+
require "ffaker"
|
3
|
+
puts "Loading field_groups..."
|
4
|
+
|
5
|
+
klasses = %w(Contact Account Campaign Opportunity Lead)
|
6
|
+
|
7
|
+
for i in (1..klasses.size) do
|
8
|
+
%>
|
9
|
+
field_group_<%= i %>:
|
10
|
+
id : <%= i %>
|
11
|
+
klass_name : <%= klasses[i-1] %>
|
12
|
+
name : "Extra"
|
13
|
+
position : 1
|
14
|
+
<% end %>
|
@@ -0,0 +1,21 @@
|
|
1
|
+
class IncreaseEmailTo254Chars < ActiveRecord::Migration
|
2
|
+
def up
|
3
|
+
change_column :accounts, :email, :string, :limit => 254
|
4
|
+
change_column :contacts, :email, :string, :limit => 254
|
5
|
+
change_column :contacts, :alt_email, :string, :limit => 254
|
6
|
+
change_column :leads, :email, :string, :limit => 254
|
7
|
+
change_column :leads, :alt_email, :string, :limit => 254
|
8
|
+
change_column :users, :email, :string, :limit => 254
|
9
|
+
change_column :users, :alt_email, :string, :limit => 254
|
10
|
+
end
|
11
|
+
|
12
|
+
def down
|
13
|
+
change_column :accounts, :email, :string, :limit => 64
|
14
|
+
change_column :contacts, :email, :string, :limit => 64
|
15
|
+
change_column :contacts, :alt_email, :string, :limit => 64
|
16
|
+
change_column :leads, :email, :string, :limit => 64
|
17
|
+
change_column :leads, :alt_email, :string, :limit => 64
|
18
|
+
change_column :users, :email, :string, :limit => 64
|
19
|
+
change_column :users, :alt_email, :string, :limit => 64
|
20
|
+
end
|
21
|
+
end
|
data/db/schema.rb
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
#
|
12
12
|
# It's strongly recommended to check this file into your version control system.
|
13
13
|
|
14
|
-
ActiveRecord::Schema.define(:version =>
|
14
|
+
ActiveRecord::Schema.define(:version => 20141126031837) do
|
15
15
|
|
16
16
|
create_table "account_contacts", :force => true do |t|
|
17
17
|
t.integer "account_id"
|
@@ -29,21 +29,23 @@ ActiveRecord::Schema.define(:version => 20131207033244) do
|
|
29
29
|
t.datetime "updated_at", :null => false
|
30
30
|
end
|
31
31
|
|
32
|
+
add_index "account_opportunities", ["account_id", "opportunity_id"], :name => "index_account_opportunities_on_account_id_and_opportunity_id"
|
33
|
+
|
32
34
|
create_table "accounts", :force => true do |t|
|
33
35
|
t.integer "user_id"
|
34
36
|
t.integer "assigned_to"
|
35
|
-
t.string "name", :limit => 64,
|
36
|
-
t.string "access", :limit => 8,
|
37
|
+
t.string "name", :limit => 64, :default => "", :null => false
|
38
|
+
t.string "access", :limit => 8, :default => "Public"
|
37
39
|
t.string "website", :limit => 64
|
38
40
|
t.string "toll_free_phone", :limit => 32
|
39
41
|
t.string "phone", :limit => 32
|
40
42
|
t.string "fax", :limit => 32
|
41
43
|
t.datetime "deleted_at"
|
42
|
-
t.datetime "created_at",
|
43
|
-
t.datetime "updated_at",
|
44
|
-
t.string "email", :limit =>
|
44
|
+
t.datetime "created_at", :null => false
|
45
|
+
t.datetime "updated_at", :null => false
|
46
|
+
t.string "email", :limit => 254
|
45
47
|
t.string "background_info"
|
46
|
-
t.integer "rating",
|
48
|
+
t.integer "rating", :default => 0, :null => false
|
47
49
|
t.string "category", :limit => 32
|
48
50
|
t.text "subscribed_users"
|
49
51
|
end
|
@@ -141,6 +143,8 @@ ActiveRecord::Schema.define(:version => 20131207033244) do
|
|
141
143
|
t.datetime "updated_at", :null => false
|
142
144
|
end
|
143
145
|
|
146
|
+
add_index "contact_opportunities", ["contact_id", "opportunity_id"], :name => "index_contact_opportunities_on_contact_id_and_opportunity_id"
|
147
|
+
|
144
148
|
create_table "contacts", :force => true do |t|
|
145
149
|
t.integer "user_id"
|
146
150
|
t.integer "lead_id"
|
@@ -152,8 +156,8 @@ ActiveRecord::Schema.define(:version => 20131207033244) do
|
|
152
156
|
t.string "title", :limit => 64
|
153
157
|
t.string "department", :limit => 64
|
154
158
|
t.string "source", :limit => 32
|
155
|
-
t.string "email", :limit =>
|
156
|
-
t.string "alt_email", :limit =>
|
159
|
+
t.string "email", :limit => 254
|
160
|
+
t.string "alt_email", :limit => 254
|
157
161
|
t.string "phone", :limit => 32
|
158
162
|
t.string "mobile", :limit => 32
|
159
163
|
t.string "fax", :limit => 32
|
@@ -256,8 +260,8 @@ ActiveRecord::Schema.define(:version => 20131207033244) do
|
|
256
260
|
t.string "source", :limit => 32
|
257
261
|
t.string "status", :limit => 32
|
258
262
|
t.string "referred_by", :limit => 64
|
259
|
-
t.string "email", :limit =>
|
260
|
-
t.string "alt_email", :limit =>
|
263
|
+
t.string "email", :limit => 254
|
264
|
+
t.string "alt_email", :limit => 254
|
261
265
|
t.string "phone", :limit => 32
|
262
266
|
t.string "mobile", :limit => 32
|
263
267
|
t.string "blog", :limit => 128
|
@@ -391,33 +395,33 @@ ActiveRecord::Schema.define(:version => 20131207033244) do
|
|
391
395
|
add_index "tasks", ["user_id", "name", "deleted_at"], :name => "index_tasks_on_user_id_and_name_and_deleted_at", :unique => true
|
392
396
|
|
393
397
|
create_table "users", :force => true do |t|
|
394
|
-
t.string "username", :limit => 32,
|
395
|
-
t.string "email", :limit =>
|
398
|
+
t.string "username", :limit => 32, :default => "", :null => false
|
399
|
+
t.string "email", :limit => 254, :default => "", :null => false
|
396
400
|
t.string "first_name", :limit => 32
|
397
401
|
t.string "last_name", :limit => 32
|
398
402
|
t.string "title", :limit => 64
|
399
403
|
t.string "company", :limit => 64
|
400
|
-
t.string "alt_email", :limit =>
|
404
|
+
t.string "alt_email", :limit => 254
|
401
405
|
t.string "phone", :limit => 32
|
402
406
|
t.string "mobile", :limit => 32
|
403
407
|
t.string "aim", :limit => 32
|
404
408
|
t.string "yahoo", :limit => 32
|
405
409
|
t.string "google", :limit => 32
|
406
410
|
t.string "skype", :limit => 32
|
407
|
-
t.string "password_hash",
|
408
|
-
t.string "password_salt",
|
409
|
-
t.string "persistence_token",
|
410
|
-
t.string "perishable_token",
|
411
|
+
t.string "password_hash", :default => "", :null => false
|
412
|
+
t.string "password_salt", :default => "", :null => false
|
413
|
+
t.string "persistence_token", :default => "", :null => false
|
414
|
+
t.string "perishable_token", :default => "", :null => false
|
411
415
|
t.datetime "last_request_at"
|
412
416
|
t.datetime "last_login_at"
|
413
417
|
t.datetime "current_login_at"
|
414
418
|
t.string "last_login_ip"
|
415
419
|
t.string "current_login_ip"
|
416
|
-
t.integer "login_count",
|
420
|
+
t.integer "login_count", :default => 0, :null => false
|
417
421
|
t.datetime "deleted_at"
|
418
|
-
t.datetime "created_at",
|
419
|
-
t.datetime "updated_at",
|
420
|
-
t.boolean "admin",
|
422
|
+
t.datetime "created_at", :null => false
|
423
|
+
t.datetime "updated_at", :null => false
|
424
|
+
t.boolean "admin", :default => false, :null => false
|
421
425
|
t.datetime "suspended_at"
|
422
426
|
t.string "single_access_token"
|
423
427
|
end
|
@@ -440,6 +444,7 @@ ActiveRecord::Schema.define(:version => 20131207033244) do
|
|
440
444
|
t.string "related_type"
|
441
445
|
end
|
442
446
|
|
447
|
+
add_index "versions", ["created_at"], :name => "index_versions_on_created_at"
|
443
448
|
add_index "versions", ["item_type", "item_id"], :name => "index_versions_on_item_type_and_item_id"
|
444
449
|
add_index "versions", ["whodunnit"], :name => "index_versions_on_whodunnit"
|
445
450
|
|
data/fig.yml
ADDED
@@ -28,9 +28,9 @@ module FatFreeCRM
|
|
28
28
|
# Invokes the hook named :method and captures its output.
|
29
29
|
#--------------------------------------------------------------------------
|
30
30
|
def self.hook(method, caller, context = {})
|
31
|
-
str = ""
|
31
|
+
str = "".html_safe
|
32
32
|
responder(method).map do |m|
|
33
|
-
str << m.send(method, caller, context)
|
33
|
+
str << m.send(method, caller, context) if m.respond_to?(method)
|
34
34
|
end
|
35
35
|
str
|
36
36
|
end
|
@@ -98,7 +98,7 @@ module FatFreeCRM
|
|
98
98
|
is_view_hook = caller.is_haml?
|
99
99
|
|
100
100
|
# If a block was given, hooks are able to replace, append or prepend view content.
|
101
|
-
if
|
101
|
+
if is_view_hook
|
102
102
|
hooks = FatFreeCRM::Callback.view_hook(method, caller, context)
|
103
103
|
# Add content to the view in the following order:
|
104
104
|
# -- before
|
@@ -108,7 +108,12 @@ module FatFreeCRM
|
|
108
108
|
hooks[:before].each{|data| view_data << data }
|
109
109
|
# Only render the original view block if there are no pending :replace operations
|
110
110
|
if hooks[:replace].empty?
|
111
|
-
view_data <<
|
111
|
+
view_data << if block_given?
|
112
|
+
capture(&block)
|
113
|
+
else
|
114
|
+
# legacy view hooks
|
115
|
+
FatFreeCRM::Callback.hook(method, caller, context)
|
116
|
+
end
|
112
117
|
else
|
113
118
|
hooks[:replace].each{|data| view_data << data }
|
114
119
|
end
|
data/lib/fat_free_crm/version.rb
CHANGED
@@ -19,10 +19,10 @@ FactoryGirl.define do
|
|
19
19
|
google nil
|
20
20
|
skype nil
|
21
21
|
admin false
|
22
|
-
password_hash
|
23
|
-
password_salt
|
24
|
-
persistence_token
|
25
|
-
perishable_token
|
22
|
+
password_hash { SecureRandom.hex(64) }
|
23
|
+
password_salt { SecureRandom.hex(64) }
|
24
|
+
persistence_token { SecureRandom.hex(64) }
|
25
|
+
perishable_token { SecureRandom.hex(10) }
|
26
26
|
single_access_token nil
|
27
27
|
last_request_at { FactoryGirl.generate(:time) }
|
28
28
|
current_login_at { FactoryGirl.generate(:time) }
|
@@ -223,4 +223,17 @@ describe User do
|
|
223
223
|
end
|
224
224
|
|
225
225
|
end
|
226
|
+
|
227
|
+
describe "text_search" do
|
228
|
+
|
229
|
+
it "should find user by email" do
|
230
|
+
create(:user, email: 'no-reply@example.com')
|
231
|
+
user = create(:user, email: 'test@example.com')
|
232
|
+
search = User.text_search('test')
|
233
|
+
expect(search.size).to eql(1)
|
234
|
+
expect(search.first).to eql(user)
|
235
|
+
end
|
236
|
+
|
237
|
+
end
|
238
|
+
|
226
239
|
end
|
@@ -18,8 +18,6 @@ describe "admin/users/create" do
|
|
18
18
|
|
19
19
|
it "should hide [Create User] form and insert user partial" do
|
20
20
|
render
|
21
|
-
|
22
|
-
rendered.should include(@user.full_name)
|
23
21
|
rendered.should include(@user.username)
|
24
22
|
rendered.should include(%Q/$('#user_#{@user.id}').effect("highlight"/)
|
25
23
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fat_free_crm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.13.
|
4
|
+
version: 0.13.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Dvorkin
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date:
|
14
|
+
date: 2015-01-22 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: rails
|
@@ -417,10 +417,12 @@ extra_rdoc_files: []
|
|
417
417
|
files:
|
418
418
|
- ".gitignore"
|
419
419
|
- ".rspec"
|
420
|
+
- ".teatro.yml"
|
420
421
|
- ".travis.yml"
|
421
422
|
- CHANGELOG
|
422
423
|
- CONTRIBUTORS
|
423
424
|
- Capfile
|
425
|
+
- Dockerfile
|
424
426
|
- Gemfile
|
425
427
|
- Gemfile.ci
|
426
428
|
- Gemfile.lock
|
@@ -898,6 +900,7 @@ files:
|
|
898
900
|
- config/boot.rb
|
899
901
|
- config/database.mysql.mac.yml
|
900
902
|
- config/database.mysql.yml
|
903
|
+
- config/database.postgres.docker.yml
|
901
904
|
- config/database.postgres.yml
|
902
905
|
- config/database.sqlite.yml
|
903
906
|
- config/deploy.example.rb
|
@@ -928,6 +931,7 @@ files:
|
|
928
931
|
- config/locales/de_ransack.yml
|
929
932
|
- config/locales/en-GB.yml
|
930
933
|
- config/locales/en-GB_fat_free_crm.yml
|
934
|
+
- config/locales/en-GB_ransack.yml
|
931
935
|
- config/locales/en-US.yml
|
932
936
|
- config/locales/en-US_fat_free_crm.yml
|
933
937
|
- config/locales/en-US_ransack.yml
|
@@ -941,6 +945,7 @@ files:
|
|
941
945
|
- config/locales/it_fat_free_crm.yml
|
942
946
|
- config/locales/ja.yml
|
943
947
|
- config/locales/ja_fat_free_crm.yml
|
948
|
+
- config/locales/ja_ransack.yml
|
944
949
|
- config/locales/pl.yml
|
945
950
|
- config/locales/pl_fat_free_crm.yml
|
946
951
|
- config/locales/pt-BR.yml
|
@@ -953,6 +958,7 @@ files:
|
|
953
958
|
- config/locales/th_fat_free_crm.yml
|
954
959
|
- config/locales/zh-CN.yml
|
955
960
|
- config/locales/zh-CN_fat_free_crm.yml
|
961
|
+
- config/locales/zh-CN_ransack.yml
|
956
962
|
- config/routes.rb
|
957
963
|
- config/settings.default.yml
|
958
964
|
- config/unicorn.rb
|
@@ -968,6 +974,7 @@ files:
|
|
968
974
|
- db/demo/contact_opportunities.yml
|
969
975
|
- db/demo/contacts.yml
|
970
976
|
- db/demo/emails.yml
|
977
|
+
- db/demo/field_groups.yml
|
971
978
|
- db/demo/leads.yml
|
972
979
|
- db/demo/opportunities.yml
|
973
980
|
- db/demo/permissions.yml
|
@@ -1031,10 +1038,14 @@ files:
|
|
1031
1038
|
- db/migrate/20121003063155_add_settings_to_custom_fields.rb
|
1032
1039
|
- db/migrate/20121221033947_fix_country_mapping.rb
|
1033
1040
|
- db/migrate/20131207033244_add_user_id_to_lists.rb
|
1041
|
+
- db/migrate/20140916011927_add_created_at_index_on_versions.rb
|
1042
|
+
- db/migrate/20140916012922_add_indexes_to_model_associations.rb
|
1043
|
+
- db/migrate/20141126031837_increase_email_to254_chars.rb
|
1034
1044
|
- db/schema.rb
|
1035
1045
|
- db/seeds.rb
|
1036
1046
|
- db/seeds/fields.rb
|
1037
1047
|
- fat_free_crm.gemspec
|
1048
|
+
- fig.yml
|
1038
1049
|
- lib/country_select.rb
|
1039
1050
|
- lib/development_tasks/gem.rake
|
1040
1051
|
- lib/development_tasks/license.rake
|
@@ -1426,7 +1437,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1426
1437
|
version: '0'
|
1427
1438
|
requirements: []
|
1428
1439
|
rubyforge_project:
|
1429
|
-
rubygems_version: 2.
|
1440
|
+
rubygems_version: 2.4.3
|
1430
1441
|
signing_key:
|
1431
1442
|
specification_version: 4
|
1432
1443
|
summary: Fat Free CRM
|