fat_free_crm 0.13.4 → 0.13.5
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.
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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25e31e5cc09622f338148fcf35500de072cb50ea
|
4
|
+
data.tar.gz: 22f374343d5c00e6313e89162759b2f98017b8ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5cc1ac5c20a97f51cfc9a71e8b03293b46e21c3d981c338de12896d3a6de94843ac9bf4c873a8072387fe137fb4c83845ca5dee115b87b7f05152112b279e7ff
|
7
|
+
data.tar.gz: 2a3e8cc15ba763ac680e469eb83e015da7624a7d097e813227e8ffda42cc2c475f92246f1fb7a0d8cd11a53b3a5dae365e60136c415f807b5bde4a790da91821
|
data/.gitignore
CHANGED
data/.teatro.yml
ADDED
data/.travis.yml
CHANGED
@@ -1,8 +1,9 @@
|
|
1
|
+
sudo: false
|
1
2
|
language: ruby
|
2
3
|
rvm:
|
3
4
|
- 1.9.3
|
4
5
|
- 2.0.0
|
5
|
-
- 2.1.
|
6
|
+
- 2.1.5
|
6
7
|
|
7
8
|
env:
|
8
9
|
- DB=mysql
|
@@ -13,6 +14,8 @@ gemfile: Gemfile.ci
|
|
13
14
|
|
14
15
|
bundler_args: --path=vendor/bundle --without heroku
|
15
16
|
|
17
|
+
cache: bundler
|
18
|
+
|
16
19
|
before_install:
|
17
20
|
- "export DISPLAY=:99.0"
|
18
21
|
- "sh -e /etc/init.d/xvfb start"
|
@@ -26,6 +29,10 @@ before_script:
|
|
26
29
|
# Run specs
|
27
30
|
script: "RAILS_ENV=test bundle exec rake"
|
28
31
|
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
+
notifications:
|
33
|
+
webhooks:
|
34
|
+
urls:
|
35
|
+
- https://webhooks.gitter.im/e/859260451e154d78c1be
|
36
|
+
on_success: change # options: [always|never|change] default: always
|
37
|
+
on_failure: always # options: [always|never|change] default: always
|
38
|
+
on_start: false # default: false
|
data/Capfile
CHANGED
@@ -1,2 +1,25 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
# Load DSL and Setup Up Stages
|
2
|
+
require 'capistrano/setup'
|
3
|
+
|
4
|
+
# Includes default deployment tasks
|
5
|
+
require 'capistrano/deploy'
|
6
|
+
|
7
|
+
# Includes tasks from other gems included in your Gemfile
|
8
|
+
#
|
9
|
+
# For documentation on these, see for example:
|
10
|
+
#
|
11
|
+
# https://github.com/capistrano/rvm
|
12
|
+
# https://github.com/capistrano/rbenv
|
13
|
+
# https://github.com/capistrano/chruby
|
14
|
+
# https://github.com/capistrano/bundler
|
15
|
+
# https://github.com/capistrano/rails
|
16
|
+
#
|
17
|
+
require 'capistrano/rvm'
|
18
|
+
# require 'capistrano/rbenv'
|
19
|
+
# require 'capistrano/chruby'
|
20
|
+
require 'capistrano/bundler'
|
21
|
+
require 'capistrano/rails/assets'
|
22
|
+
require 'capistrano/rails/migrations'
|
23
|
+
|
24
|
+
# Loads custom tasks from `lib/capistrano/tasks' if you have any defined.
|
25
|
+
Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }
|
data/Dockerfile
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
# fig build
|
2
|
+
# fig run web bundle exec rake db:create db:schema:load ffcrm:demo:load
|
3
|
+
# fig up
|
4
|
+
|
5
|
+
FROM phusion/passenger-ruby21
|
6
|
+
MAINTAINER Steve Kenworthy
|
7
|
+
|
8
|
+
ENV HOME /root
|
9
|
+
|
10
|
+
CMD ["/sbin/my_init"]
|
11
|
+
|
12
|
+
ADD . /home/app/ffcrm
|
13
|
+
WORKDIR /home/app/ffcrm
|
14
|
+
|
15
|
+
RUN cp config/database.postgres.docker.yml config/database.yml
|
16
|
+
|
17
|
+
RUN chown -R app:app /home/app/ffcrm
|
18
|
+
RUN sudo -u app bundle install --deployment
|
data/Gemfile
CHANGED
@@ -36,8 +36,12 @@ group :development do
|
|
36
36
|
unless ENV["CI"]
|
37
37
|
gem 'thin'
|
38
38
|
gem 'quiet_assets'
|
39
|
-
gem 'capistrano'
|
40
|
-
gem '
|
39
|
+
gem 'capistrano'
|
40
|
+
gem 'capistrano-bundler'
|
41
|
+
gem 'capistrano-rails'
|
42
|
+
gem 'capistrano-rvm'
|
43
|
+
#~ gem 'capistrano-chruby'
|
44
|
+
#~ gem 'capistrano-rbenv'
|
41
45
|
gem 'guard'
|
42
46
|
gem 'guard-rspec'
|
43
47
|
gem 'guard-rails'
|
data/Gemfile.lock
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
GEM
|
2
2
|
remote: https://rubygems.org/
|
3
3
|
specs:
|
4
|
-
actionmailer (3.2.
|
5
|
-
actionpack (= 3.2.
|
4
|
+
actionmailer (3.2.21)
|
5
|
+
actionpack (= 3.2.21)
|
6
6
|
mail (~> 2.5.4)
|
7
|
-
actionpack (3.2.
|
8
|
-
activemodel (= 3.2.
|
9
|
-
activesupport (= 3.2.
|
7
|
+
actionpack (3.2.21)
|
8
|
+
activemodel (= 3.2.21)
|
9
|
+
activesupport (= 3.2.21)
|
10
10
|
builder (~> 3.0.0)
|
11
11
|
erubis (~> 2.7.0)
|
12
12
|
journey (~> 1.0.4)
|
@@ -14,18 +14,18 @@ GEM
|
|
14
14
|
rack-cache (~> 1.2)
|
15
15
|
rack-test (~> 0.6.1)
|
16
16
|
sprockets (~> 2.2.1)
|
17
|
-
activemodel (3.2.
|
18
|
-
activesupport (= 3.2.
|
17
|
+
activemodel (3.2.21)
|
18
|
+
activesupport (= 3.2.21)
|
19
19
|
builder (~> 3.0.0)
|
20
|
-
activerecord (3.2.
|
21
|
-
activemodel (= 3.2.
|
22
|
-
activesupport (= 3.2.
|
20
|
+
activerecord (3.2.21)
|
21
|
+
activemodel (= 3.2.21)
|
22
|
+
activesupport (= 3.2.21)
|
23
23
|
arel (~> 3.0.2)
|
24
24
|
tzinfo (~> 0.3.29)
|
25
|
-
activeresource (3.2.
|
26
|
-
activemodel (= 3.2.
|
27
|
-
activesupport (= 3.2.
|
28
|
-
activesupport (3.2.
|
25
|
+
activeresource (3.2.21)
|
26
|
+
activemodel (= 3.2.21)
|
27
|
+
activesupport (= 3.2.21)
|
28
|
+
activesupport (3.2.21)
|
29
29
|
i18n (~> 0.6, >= 0.6.4)
|
30
30
|
multi_json (~> 1.0)
|
31
31
|
acts-as-taggable-on (2.3.3)
|
@@ -41,31 +41,40 @@ GEM
|
|
41
41
|
activerecord (>= 3.0.7)
|
42
42
|
activerecord (>= 3.0.7)
|
43
43
|
builder (3.0.4)
|
44
|
-
byebug (3.
|
44
|
+
byebug (3.5.1)
|
45
45
|
columnize (~> 0.8)
|
46
46
|
debugger-linecache (~> 1.2)
|
47
|
+
slop (~> 3.6)
|
47
48
|
cancan (1.6.10)
|
48
|
-
capistrano (
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
49
|
+
capistrano (3.3.5)
|
50
|
+
capistrano-stats (~> 1.1.0)
|
51
|
+
i18n
|
52
|
+
rake (>= 10.0.0)
|
53
|
+
sshkit (~> 1.3)
|
54
|
+
capistrano-bundler (1.1.3)
|
55
|
+
capistrano (~> 3.1)
|
56
|
+
sshkit (~> 1.2)
|
57
|
+
capistrano-rails (1.1.2)
|
58
|
+
capistrano (~> 3.1)
|
59
|
+
capistrano-bundler (~> 1.1)
|
60
|
+
capistrano-rvm (0.1.2)
|
61
|
+
capistrano (~> 3.0)
|
62
|
+
sshkit (~> 1.2)
|
63
|
+
capistrano-stats (1.1.1)
|
64
|
+
capybara (2.4.4)
|
56
65
|
mime-types (>= 1.16)
|
57
66
|
nokogiri (>= 1.3.3)
|
58
67
|
rack (>= 1.0.0)
|
59
68
|
rack-test (>= 0.5.4)
|
60
69
|
xpath (~> 2.0)
|
61
|
-
celluloid (0.
|
62
|
-
timers (~>
|
63
|
-
childprocess (0.5.
|
70
|
+
celluloid (0.16.0)
|
71
|
+
timers (~> 4.0.0)
|
72
|
+
childprocess (0.5.5)
|
64
73
|
ffi (~> 1.0, >= 1.0.11)
|
65
74
|
chronic (0.10.2)
|
66
75
|
climate_control (0.0.3)
|
67
76
|
activesupport (>= 3.0)
|
68
|
-
cocaine (0.5.
|
77
|
+
cocaine (0.5.5)
|
69
78
|
climate_control (>= 0.0.3, < 1.0)
|
70
79
|
coderay (1.1.0)
|
71
80
|
coffee-rails (3.2.2)
|
@@ -74,8 +83,9 @@ GEM
|
|
74
83
|
coffee-script (2.3.0)
|
75
84
|
coffee-script-source
|
76
85
|
execjs
|
77
|
-
coffee-script-source (1.
|
78
|
-
|
86
|
+
coffee-script-source (1.8.0)
|
87
|
+
colorize (0.7.5)
|
88
|
+
columnize (0.9.0)
|
79
89
|
coveralls (0.7.1)
|
80
90
|
multi_json (~> 1.3)
|
81
91
|
rest-client
|
@@ -91,50 +101,53 @@ GEM
|
|
91
101
|
debugger-linecache (~> 1.2.0)
|
92
102
|
debugger-ruby_core_source (~> 1.3.5)
|
93
103
|
debugger-linecache (1.2.0)
|
94
|
-
debugger-ruby_core_source (1.3.
|
104
|
+
debugger-ruby_core_source (1.3.7)
|
95
105
|
diff-lcs (1.2.5)
|
96
106
|
docile (1.1.5)
|
97
107
|
dynamic_form (1.1.4)
|
98
108
|
email_reply_parser_ffcrm (0.5.0)
|
99
109
|
erubis (2.7.0)
|
100
|
-
eventmachine (1.0.
|
101
|
-
execjs (2.2.
|
102
|
-
factory_girl (4.
|
110
|
+
eventmachine (1.0.4)
|
111
|
+
execjs (2.2.2)
|
112
|
+
factory_girl (4.5.0)
|
103
113
|
activesupport (>= 3.0.0)
|
104
|
-
factory_girl_rails (4.
|
105
|
-
factory_girl (~> 4.
|
114
|
+
factory_girl_rails (4.5.0)
|
115
|
+
factory_girl (~> 4.5.0)
|
106
116
|
railties (>= 3.0.0)
|
107
117
|
ffaker (1.25.0)
|
108
|
-
ffi (1.9.
|
109
|
-
font-awesome-rails (4.
|
118
|
+
ffi (1.9.6)
|
119
|
+
font-awesome-rails (4.2.0.0)
|
110
120
|
railties (>= 3.2, < 5.0)
|
111
121
|
formatador (0.2.5)
|
112
|
-
guard (2.
|
122
|
+
guard (2.10.5)
|
113
123
|
formatador (>= 0.2.4)
|
114
124
|
listen (~> 2.7)
|
115
125
|
lumberjack (~> 1.0)
|
126
|
+
nenv (~> 0.1)
|
116
127
|
pry (>= 0.9.12)
|
117
128
|
thor (>= 0.18.1)
|
118
|
-
guard-
|
129
|
+
guard-compat (1.2.0)
|
130
|
+
guard-rails (0.7.0)
|
119
131
|
guard (~> 2.0)
|
120
|
-
guard-rspec (4.
|
132
|
+
guard-rspec (4.5.0)
|
121
133
|
guard (~> 2.1)
|
122
|
-
|
123
|
-
|
134
|
+
guard-compat (~> 1.1)
|
135
|
+
rspec (>= 2.99.0, < 4.0)
|
136
|
+
haml (4.0.6)
|
124
137
|
tilt
|
125
138
|
headless (1.0.2)
|
126
|
-
highline (1.6.21)
|
127
139
|
hike (1.2.3)
|
128
|
-
|
129
|
-
|
140
|
+
hitimes (1.2.2)
|
141
|
+
htmlentities (4.3.3)
|
142
|
+
i18n (0.7.0)
|
130
143
|
journey (1.0.4)
|
131
144
|
jquery-rails (2.1.4)
|
132
145
|
railties (>= 3.0, < 5.0)
|
133
146
|
thor (>= 0.14, < 2.0)
|
134
147
|
json (1.8.1)
|
135
148
|
kgio (2.9.2)
|
136
|
-
libv8 (3.16.14.
|
137
|
-
listen (2.
|
149
|
+
libv8 (3.16.14.7)
|
150
|
+
listen (2.8.4)
|
138
151
|
celluloid (>= 0.15.2)
|
139
152
|
rb-fsevent (>= 0.9.3)
|
140
153
|
rb-inotify (>= 0.9)
|
@@ -144,22 +157,19 @@ GEM
|
|
144
157
|
treetop (~> 1.4.8)
|
145
158
|
method_source (0.8.2)
|
146
159
|
mime-types (1.25.1)
|
147
|
-
mini_portile (0.6.
|
160
|
+
mini_portile (0.6.1)
|
148
161
|
multi_json (1.10.1)
|
162
|
+
nenv (0.1.1)
|
149
163
|
net-scp (1.2.1)
|
150
164
|
net-ssh (>= 2.6.5)
|
151
|
-
net-sftp (2.1.2)
|
152
|
-
net-ssh (>= 2.6.5)
|
153
165
|
net-ssh (2.9.1)
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
nokogiri (1.6.3.1)
|
158
|
-
mini_portile (= 0.6.0)
|
166
|
+
netrc (0.10.2)
|
167
|
+
nokogiri (1.6.5)
|
168
|
+
mini_portile (~> 0.6.0)
|
159
169
|
paper_trail (2.7.2)
|
160
170
|
activerecord (~> 3.0)
|
161
171
|
railties (~> 3.0)
|
162
|
-
paperclip (4.2.
|
172
|
+
paperclip (4.2.1)
|
163
173
|
activemodel (>= 3.0.0)
|
164
174
|
activesupport (>= 3.0.0)
|
165
175
|
cocaine (~> 0.5.3)
|
@@ -177,7 +187,7 @@ GEM
|
|
177
187
|
slop (~> 3.4)
|
178
188
|
pry-rails (0.3.2)
|
179
189
|
pry (>= 0.9.10)
|
180
|
-
quiet_assets (1.0
|
190
|
+
quiet_assets (1.1.0)
|
181
191
|
railties (>= 3.1, < 5.0)
|
182
192
|
rack (1.4.5)
|
183
193
|
rack-cache (1.2)
|
@@ -186,32 +196,32 @@ GEM
|
|
186
196
|
rack
|
187
197
|
rack-test (0.6.2)
|
188
198
|
rack (>= 1.0)
|
189
|
-
rails (3.2.
|
190
|
-
actionmailer (= 3.2.
|
191
|
-
actionpack (= 3.2.
|
192
|
-
activerecord (= 3.2.
|
193
|
-
activeresource (= 3.2.
|
194
|
-
activesupport (= 3.2.
|
199
|
+
rails (3.2.21)
|
200
|
+
actionmailer (= 3.2.21)
|
201
|
+
actionpack (= 3.2.21)
|
202
|
+
activerecord (= 3.2.21)
|
203
|
+
activeresource (= 3.2.21)
|
204
|
+
activesupport (= 3.2.21)
|
195
205
|
bundler (~> 1.0)
|
196
|
-
railties (= 3.2.
|
206
|
+
railties (= 3.2.21)
|
197
207
|
rails3-jquery-autocomplete (1.0.14)
|
198
208
|
rails (>= 3.0)
|
199
|
-
rails_12factor (0.0.
|
209
|
+
rails_12factor (0.0.3)
|
200
210
|
rails_serve_static_assets
|
201
211
|
rails_stdout_logging
|
202
212
|
rails_autolink (1.1.6)
|
203
213
|
rails (> 3.1)
|
204
|
-
rails_serve_static_assets (0.0.
|
214
|
+
rails_serve_static_assets (0.0.3)
|
205
215
|
rails_stdout_logging (0.0.3)
|
206
|
-
railties (3.2.
|
207
|
-
actionpack (= 3.2.
|
208
|
-
activesupport (= 3.2.
|
216
|
+
railties (3.2.21)
|
217
|
+
actionpack (= 3.2.21)
|
218
|
+
activesupport (= 3.2.21)
|
209
219
|
rack-ssl (~> 1.3.2)
|
210
220
|
rake (>= 0.8.7)
|
211
221
|
rdoc (~> 3.4)
|
212
222
|
thor (>= 0.14.6, < 2.0)
|
213
223
|
raindrops (0.13.0)
|
214
|
-
rake (10.
|
224
|
+
rake (10.4.2)
|
215
225
|
ransack (1.1.0)
|
216
226
|
actionpack (>= 3.0)
|
217
227
|
activerecord (>= 3.0)
|
@@ -237,7 +247,7 @@ GEM
|
|
237
247
|
rspec-core (~> 2.99.0)
|
238
248
|
rspec-expectations (~> 2.99.0)
|
239
249
|
rspec-mocks (~> 2.99.0)
|
240
|
-
rspec-collection_matchers (1.
|
250
|
+
rspec-collection_matchers (1.1.2)
|
241
251
|
rspec-expectations (>= 2.99.0.beta1)
|
242
252
|
rspec-core (2.99.2)
|
243
253
|
rspec-expectations (2.99.2)
|
@@ -253,55 +263,60 @@ GEM
|
|
253
263
|
rspec-expectations (~> 2.99.0)
|
254
264
|
rspec-mocks (~> 2.99.0)
|
255
265
|
rubyzip (1.1.6)
|
256
|
-
sass (3.4.
|
266
|
+
sass (3.4.9)
|
257
267
|
sass-rails (3.2.6)
|
258
268
|
railties (~> 3.2.0)
|
259
269
|
sass (>= 3.1.10)
|
260
270
|
tilt (~> 1.3)
|
261
271
|
select2-rails (3.5.9.1)
|
262
272
|
thor (~> 0.14)
|
263
|
-
selenium-webdriver (2.
|
264
|
-
childprocess (
|
273
|
+
selenium-webdriver (2.44.0)
|
274
|
+
childprocess (~> 0.5)
|
265
275
|
multi_json (~> 1.0)
|
266
276
|
rubyzip (~> 1.0)
|
267
|
-
websocket (~> 1.0
|
277
|
+
websocket (~> 1.0)
|
268
278
|
simple_form (2.0.4)
|
269
279
|
actionpack (~> 3.0)
|
270
280
|
activemodel (~> 3.0)
|
271
|
-
simplecov (0.9.
|
281
|
+
simplecov (0.9.1)
|
272
282
|
docile (~> 1.1.0)
|
273
|
-
multi_json
|
283
|
+
multi_json (~> 1.0)
|
274
284
|
simplecov-html (~> 0.8.0)
|
275
285
|
simplecov-html (0.8.0)
|
276
286
|
slop (3.6.0)
|
277
|
-
sprockets (2.2.
|
287
|
+
sprockets (2.2.3)
|
278
288
|
hike (~> 1.2)
|
279
289
|
multi_json (~> 1.0)
|
280
290
|
rack (~> 1.0)
|
281
291
|
tilt (~> 1.1, != 1.3.0)
|
282
|
-
sqlite3 (1.3.
|
292
|
+
sqlite3 (1.3.10)
|
293
|
+
sshkit (1.6.1)
|
294
|
+
colorize (>= 0.7.0)
|
295
|
+
net-scp (>= 1.1.2)
|
296
|
+
net-ssh (>= 2.8.0)
|
283
297
|
term-ansicolor (1.3.0)
|
284
298
|
tins (~> 1.0)
|
285
299
|
therubyracer (0.12.1)
|
286
300
|
libv8 (~> 3.16.14.0)
|
287
301
|
ref
|
288
|
-
thin (1.6.
|
289
|
-
daemons (>= 1.0.9)
|
290
|
-
eventmachine (
|
291
|
-
rack (
|
302
|
+
thin (1.6.3)
|
303
|
+
daemons (~> 1.0, >= 1.0.9)
|
304
|
+
eventmachine (~> 1.0)
|
305
|
+
rack (~> 1.0)
|
292
306
|
thor (0.19.1)
|
293
307
|
tilt (1.4.1)
|
294
308
|
timecop (0.7.1)
|
295
|
-
timers (
|
296
|
-
|
309
|
+
timers (4.0.1)
|
310
|
+
hitimes
|
311
|
+
tins (1.3.3)
|
297
312
|
treetop (1.4.15)
|
298
313
|
polyglot
|
299
314
|
polyglot (>= 0.3.1)
|
300
315
|
turbo-sprockets-rails3 (0.3.14)
|
301
316
|
railties (> 3.2.8, < 4.0.0)
|
302
317
|
sprockets (>= 2.2.0)
|
303
|
-
tzinfo (0.3.
|
304
|
-
uglifier (2.
|
318
|
+
tzinfo (0.3.42)
|
319
|
+
uglifier (2.6.0)
|
305
320
|
execjs (>= 0.3.0)
|
306
321
|
json (>= 1.8.0)
|
307
322
|
unicorn (4.8.3)
|
@@ -310,11 +325,11 @@ GEM
|
|
310
325
|
raindrops (~> 0.7)
|
311
326
|
valium (0.5.0)
|
312
327
|
activerecord (>= 3.0.2)
|
313
|
-
websocket (1.
|
328
|
+
websocket (1.2.1)
|
314
329
|
will_paginate (3.0.7)
|
315
330
|
xpath (2.0.0)
|
316
331
|
nokogiri (~> 1.3)
|
317
|
-
zeus (0.15.
|
332
|
+
zeus (0.15.3)
|
318
333
|
method_source (>= 0.6.7)
|
319
334
|
|
320
335
|
PLATFORMS
|
@@ -328,8 +343,10 @@ DEPENDENCIES
|
|
328
343
|
authlogic (= 3.1.0)
|
329
344
|
byebug
|
330
345
|
cancan
|
331
|
-
capistrano
|
332
|
-
|
346
|
+
capistrano
|
347
|
+
capistrano-bundler
|
348
|
+
capistrano-rails
|
349
|
+
capistrano-rvm
|
333
350
|
capybara
|
334
351
|
cocaine
|
335
352
|
coffee-rails (~> 3.2.1)
|