pshq_engine 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.
- checksums.yaml +4 -4
- data/Gemfile +84 -26
- data/Gemfile.lock +140 -5
- data/lib/pshq_engine/version.rb +1 -1
- data/lib/pshq_engine/version.rb~ +1 -1
- data/pkg/pshq_engine-0.1.5.gem +0 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: be693728b71022005c91ddb837378213f4cd5ceb
|
4
|
+
data.tar.gz: 39dddc9a1ae6f6edb233e2c31f0cffc37386890d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 09727844158dd549c0d64caa28a96c338f49dfbdd8cd1f8f88c47db4bbd7150a6a7848d4db22033e22d408572d532310d21292c6c82d4c85cc31eb0a2e562ecb
|
7
|
+
data.tar.gz: cf0387a2471082e531bf1956464f8ee753297e163676dbe20c778260f48ddf07f5a841acdc12035a4d2bd3fa8b3ff1f8f2c4c253738dc432bdbfa5dbf733a7ec
|
data/Gemfile
CHANGED
@@ -2,48 +2,106 @@ source 'https://rubygems.org'
|
|
2
2
|
|
3
3
|
# Specify your gem's dependencies in pshq_engine.gemspec
|
4
4
|
gemspec
|
5
|
+
#for picture uploading
|
6
|
+
gem "paperclip", "~> 4.2"
|
5
7
|
|
8
|
+
#to assign roles
|
9
|
+
gem 'rolify', '~> 4.0.0'
|
6
10
|
|
11
|
+
# Assign ability to user
|
12
|
+
gem 'cancancan'
|
13
|
+
#For soft deletion
|
14
|
+
gem "paranoia", "~> 2.0"
|
7
15
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
8
16
|
gem 'rails', '4.1.2'
|
9
|
-
|
17
|
+
|
18
|
+
gem 'activesupport', '4.1.2'
|
19
|
+
|
20
|
+
# Use postgresql as the database for Active Record
|
10
21
|
gem 'pg'
|
22
|
+
|
23
|
+
# Use roo for spreadsheet
|
24
|
+
gem 'roo'
|
25
|
+
|
11
26
|
# Use SCSS for stylesheets
|
12
27
|
gem 'sass-rails', '~> 4.0.3'
|
28
|
+
|
13
29
|
# Use Uglifier as compressor for JavaScript assets
|
14
30
|
gem 'uglifier', '>= 1.3.0'
|
31
|
+
|
32
|
+
#for email notifications
|
33
|
+
gem 'exception_notification', '4.1.0.rc1'
|
34
|
+
|
15
35
|
# Use CoffeeScript for .js.coffee assets and views
|
16
36
|
gem 'coffee-rails', '~> 4.0.0'
|
17
|
-
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
18
|
-
# gem 'therubyracer', platforms: :ruby
|
19
|
-
gem 'pg_search'
|
20
37
|
|
21
|
-
|
38
|
+
#convert database to csv
|
39
|
+
gem 'to_csv-rails'
|
40
|
+
|
41
|
+
#Send XlSX to database
|
42
|
+
gem 'to_xls-rails'
|
43
|
+
|
44
|
+
#s3 dependant gem
|
45
|
+
gem 'aws-sdk', '<2.0'
|
46
|
+
|
47
|
+
# gem 'pg_search', platforms: :ruby
|
48
|
+
gem 'pg_search'
|
22
49
|
|
23
|
-
gem 'devise_invitable', '~> 1.3.4'
|
24
50
|
# Use jquery as the JavaScript library
|
25
51
|
gem 'jquery-rails'
|
26
|
-
|
27
|
-
gem 'turbolinks'
|
52
|
+
|
28
53
|
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
29
54
|
gem 'jbuilder', '~> 2.0'
|
55
|
+
|
56
|
+
# When ever Gems
|
57
|
+
gem 'whenever', :require => false
|
30
58
|
# bundle exec rake doc:rails generates the API under doc/api.
|
31
|
-
gem 'sdoc', '~> 0.4.0',
|
59
|
+
gem 'sdoc', '~> 0.4.0', group: :doc
|
60
|
+
|
61
|
+
#pagination gem
|
62
|
+
gem 'will_paginate', '~> 3.0.6'
|
63
|
+
#stripe gem
|
64
|
+
|
65
|
+
gem 'stripe', :git => 'https://github.com/stripe/stripe-ruby'
|
66
|
+
|
67
|
+
#pdfkit gem
|
68
|
+
|
69
|
+
gem "pdfkit"
|
70
|
+
|
71
|
+
#gem 'rqrcode'
|
72
|
+
gem 'rqrcode'
|
73
|
+
|
74
|
+
#gem 'rqrcode_png'
|
75
|
+
gem 'rqrcode_png'
|
76
|
+
|
77
|
+
# wkhtmltopdf
|
78
|
+
|
79
|
+
gem 'wkhtmltopdf' , :group => :development
|
80
|
+
gem 'wkhtmltopdf-binary', :group => :development
|
81
|
+
|
82
|
+
# barby
|
83
|
+
gem 'barby'
|
84
|
+
|
85
|
+
gem 'prawn-rails'
|
86
|
+
# barby-chunky_png
|
87
|
+
#gem 'barby-chunky_png'
|
88
|
+
gem 'wkhtmltopdf-heroku', :group => :production
|
89
|
+
gem 'mailboxer', :git => 'git://github.com/mailboxer/mailboxer.git'
|
32
90
|
|
33
91
|
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
34
|
-
gem 'spring',
|
92
|
+
gem 'spring', '~> 1.3.6', group: :development
|
93
|
+
|
94
|
+
gem 'bower-rails', '~> 0.9.2'
|
35
95
|
|
36
|
-
|
37
|
-
|
96
|
+
gem 'devise', '~> 3.2'
|
97
|
+
|
98
|
+
gem 'devise_invitable', '~> 1.3.4'
|
38
99
|
|
39
|
-
|
40
|
-
# gem 'unicorn'
|
100
|
+
gem 'rails_12factor', group: :production
|
41
101
|
|
42
|
-
|
43
|
-
# gem 'capistrano-rails', group: :development
|
102
|
+
gem 'delayed_job_active_record'
|
44
103
|
|
45
|
-
|
46
|
-
# gem 'debugger', group: [:development, :test]
|
104
|
+
gem "pubnub-ruby"
|
47
105
|
|
48
106
|
gem 'omniauth-google-oauth2'
|
49
107
|
|
@@ -53,14 +111,14 @@ gem 'omniauth-twitter'
|
|
53
111
|
|
54
112
|
gem 'twitter'
|
55
113
|
|
56
|
-
|
114
|
+
#unicorn
|
57
115
|
|
58
|
-
|
59
|
-
|
116
|
+
gem 'unicorn'
|
117
|
+
|
118
|
+
# rack timeout for heroku in unicorn
|
60
119
|
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
gem "paranoia", "~> 2.0"
|
120
|
+
gem 'rack-timeout'
|
121
|
+
|
122
|
+
gem 'byebug'
|
65
123
|
|
66
|
-
gem '
|
124
|
+
gem 'pushwoosh'
|
data/Gemfile.lock
CHANGED
@@ -7,6 +7,14 @@ GIT
|
|
7
7
|
foreigner (>= 0.9.1)
|
8
8
|
rails (>= 3.2.0)
|
9
9
|
|
10
|
+
GIT
|
11
|
+
remote: https://github.com/stripe/stripe-ruby
|
12
|
+
revision: dd22228f43677f77011d69a72be3a0dd215b6bce
|
13
|
+
specs:
|
14
|
+
stripe (1.29.1)
|
15
|
+
json (~> 1.8.1)
|
16
|
+
rest-client (~> 1.4)
|
17
|
+
|
10
18
|
PATH
|
11
19
|
remote: .
|
12
20
|
specs:
|
@@ -43,15 +51,25 @@ GEM
|
|
43
51
|
tzinfo (~> 1.1)
|
44
52
|
addressable (2.3.8)
|
45
53
|
arel (5.0.1.20140414130214)
|
54
|
+
aws-sdk (1.66.0)
|
55
|
+
aws-sdk-v1 (= 1.66.0)
|
56
|
+
aws-sdk-v1 (1.66.0)
|
57
|
+
json (~> 1.4)
|
58
|
+
nokogiri (>= 1.4.4)
|
59
|
+
barby (0.6.2)
|
46
60
|
bcrypt (3.1.10)
|
61
|
+
bower-rails (0.9.2)
|
47
62
|
buftok (0.2.0)
|
48
63
|
builder (3.2.2)
|
64
|
+
byebug (6.0.2)
|
49
65
|
cancancan (1.12.0)
|
50
66
|
carrierwave (0.10.0)
|
51
67
|
activemodel (>= 3.2.0)
|
52
68
|
activesupport (>= 3.2.0)
|
53
69
|
json (>= 1.7)
|
54
70
|
mime-types (>= 1.16)
|
71
|
+
chronic (0.10.2)
|
72
|
+
chunky_png (1.3.4)
|
55
73
|
climate_control (0.0.3)
|
56
74
|
activesupport (>= 3.0)
|
57
75
|
cocaine (0.5.7)
|
@@ -63,6 +81,12 @@ GEM
|
|
63
81
|
coffee-script-source
|
64
82
|
execjs
|
65
83
|
coffee-script-source (1.9.1.1)
|
84
|
+
cookiejar (0.3.2)
|
85
|
+
delayed_job (4.1.1)
|
86
|
+
activesupport (>= 3.0, < 5.0)
|
87
|
+
delayed_job_active_record (4.1.0)
|
88
|
+
activerecord (>= 3.0, < 5)
|
89
|
+
delayed_job (>= 3.0, < 5)
|
66
90
|
devise (3.5.2)
|
67
91
|
bcrypt (~> 3.0)
|
68
92
|
orm_adapter (~> 0.1)
|
@@ -75,13 +99,27 @@ GEM
|
|
75
99
|
devise (>= 3.2.0)
|
76
100
|
domain_name (0.5.25)
|
77
101
|
unf (>= 0.0.5, < 1.0.0)
|
102
|
+
em-http-request (1.1.2)
|
103
|
+
addressable (>= 2.3.4)
|
104
|
+
cookiejar
|
105
|
+
em-socksify (>= 0.3)
|
106
|
+
eventmachine (>= 1.0.3)
|
107
|
+
http_parser.rb (>= 0.6.0)
|
108
|
+
em-socksify (0.3.1)
|
109
|
+
eventmachine (>= 1.0.0.beta.4)
|
78
110
|
equalizer (0.0.10)
|
79
111
|
erubis (2.7.0)
|
112
|
+
eventmachine (1.0.8)
|
113
|
+
exception_notification (4.1.0.rc1)
|
114
|
+
actionmailer (>= 3.0.4)
|
115
|
+
activesupport (>= 3.0.4)
|
80
116
|
execjs (2.6.0)
|
81
117
|
faraday (0.9.2)
|
82
118
|
multipart-post (>= 1.2, < 3)
|
83
119
|
foreigner (1.7.4)
|
84
120
|
activerecord (>= 3.0.0)
|
121
|
+
gene_pool (1.4.1)
|
122
|
+
thread_safe
|
85
123
|
hashie (3.4.2)
|
86
124
|
hike (1.2.3)
|
87
125
|
http (0.9.8)
|
@@ -93,6 +131,9 @@ GEM
|
|
93
131
|
domain_name (~> 0.5)
|
94
132
|
http-form_data (1.0.1)
|
95
133
|
http_parser.rb (0.6.0)
|
134
|
+
httparty (0.13.7)
|
135
|
+
json (~> 1.8)
|
136
|
+
multi_xml (>= 0.5.2)
|
96
137
|
i18n (0.7.0)
|
97
138
|
jbuilder (2.3.2)
|
98
139
|
activesupport (>= 3.0.0, < 5)
|
@@ -102,6 +143,9 @@ GEM
|
|
102
143
|
thor (>= 0.14, < 2.0)
|
103
144
|
json (1.8.3)
|
104
145
|
jwt (1.5.1)
|
146
|
+
kgio (2.10.0)
|
147
|
+
macaddr (1.7.1)
|
148
|
+
systemu (~> 2.6.2)
|
105
149
|
mail (2.5.4)
|
106
150
|
mime-types (~> 1.16)
|
107
151
|
treetop (~> 1.4.8)
|
@@ -109,11 +153,15 @@ GEM
|
|
109
153
|
thread_safe (~> 0.3, >= 0.3.1)
|
110
154
|
mime-types (1.25.1)
|
111
155
|
mimemagic (0.3.0)
|
156
|
+
mini_portile (0.6.2)
|
112
157
|
minitest (5.8.1)
|
113
158
|
multi_json (1.11.2)
|
114
159
|
multi_xml (0.5.5)
|
115
160
|
multipart-post (2.0.0)
|
116
161
|
naught (1.1.0)
|
162
|
+
netrc (0.10.3)
|
163
|
+
nokogiri (1.6.6.2)
|
164
|
+
mini_portile (~> 0.6.0)
|
117
165
|
oauth (0.4.7)
|
118
166
|
oauth2 (1.0.0)
|
119
167
|
faraday (>= 0.8, < 0.10)
|
@@ -150,15 +198,41 @@ GEM
|
|
150
198
|
mimemagic (= 0.3.0)
|
151
199
|
paranoia (2.1.3)
|
152
200
|
activerecord (~> 4.0)
|
201
|
+
pdf-core (0.6.0)
|
202
|
+
pdfkit (0.8.2)
|
203
|
+
persistent_http (1.0.6)
|
204
|
+
gene_pool (>= 1.3)
|
205
|
+
persistent_httparty (0.1.2)
|
206
|
+
httparty (~> 0.9)
|
207
|
+
persistent_http (< 2)
|
153
208
|
pg (0.18.3)
|
154
209
|
pg_search (1.0.5)
|
155
210
|
activerecord (>= 3.1)
|
156
211
|
activesupport (>= 3.1)
|
157
212
|
arel
|
158
213
|
polyglot (0.3.5)
|
214
|
+
prawn (2.0.2)
|
215
|
+
pdf-core (~> 0.6.0)
|
216
|
+
ttfunk (~> 1.4.0)
|
217
|
+
prawn-rails (0.1.1)
|
218
|
+
prawn
|
219
|
+
prawn-table
|
220
|
+
rails (>= 3.1.0)
|
221
|
+
prawn-table (0.2.2)
|
222
|
+
prawn (>= 1.3.0, < 3.0.0)
|
223
|
+
pubnub-ruby (3.4.1)
|
224
|
+
em-http-request
|
225
|
+
eventmachine
|
226
|
+
httparty
|
227
|
+
json
|
228
|
+
persistent_httparty
|
229
|
+
uuid (~> 2.3.5)
|
230
|
+
pushwoosh (1.0.1)
|
231
|
+
httparty (~> 0.13.3)
|
159
232
|
rack (1.5.5)
|
160
233
|
rack-test (0.6.3)
|
161
234
|
rack (>= 1.0)
|
235
|
+
rack-timeout (0.3.2)
|
162
236
|
rails (4.1.2)
|
163
237
|
actionmailer (= 4.1.2)
|
164
238
|
actionpack (= 4.1.2)
|
@@ -169,16 +243,36 @@ GEM
|
|
169
243
|
bundler (>= 1.3.0, < 2.0)
|
170
244
|
railties (= 4.1.2)
|
171
245
|
sprockets-rails (~> 2.0)
|
246
|
+
rails_12factor (0.0.3)
|
247
|
+
rails_serve_static_assets
|
248
|
+
rails_stdout_logging
|
249
|
+
rails_serve_static_assets (0.0.4)
|
250
|
+
rails_stdout_logging (0.0.4)
|
172
251
|
railties (4.1.2)
|
173
252
|
actionpack (= 4.1.2)
|
174
253
|
activesupport (= 4.1.2)
|
175
254
|
rake (>= 0.8.7)
|
176
255
|
thor (>= 0.18.1, < 2.0)
|
256
|
+
raindrops (0.15.0)
|
177
257
|
rake (10.4.2)
|
178
258
|
rdoc (4.2.0)
|
179
259
|
responders (1.1.2)
|
180
260
|
railties (>= 3.2, < 4.2)
|
261
|
+
rest-client (1.8.0)
|
262
|
+
http-cookie (>= 1.0.2, < 2.0)
|
263
|
+
mime-types (>= 1.16, < 3.0)
|
264
|
+
netrc (~> 0.7)
|
181
265
|
rolify (4.0.0)
|
266
|
+
roo (2.1.1)
|
267
|
+
nokogiri (~> 1)
|
268
|
+
rubyzip (~> 1.1, < 2.0.0)
|
269
|
+
rqrcode (0.7.0)
|
270
|
+
chunky_png
|
271
|
+
rqrcode_png (0.1.5)
|
272
|
+
chunky_png
|
273
|
+
rqrcode
|
274
|
+
ruby-ole (1.2.11.8)
|
275
|
+
rubyzip (1.1.7)
|
182
276
|
sass (3.2.19)
|
183
277
|
sass-rails (4.0.5)
|
184
278
|
railties (>= 4.0.0, < 5.0)
|
@@ -189,7 +283,9 @@ GEM
|
|
189
283
|
json (~> 1.7, >= 1.7.7)
|
190
284
|
rdoc (~> 4.0)
|
191
285
|
simple_oauth (0.3.1)
|
192
|
-
|
286
|
+
spreadsheet (1.0.7)
|
287
|
+
ruby-ole (>= 1.0)
|
288
|
+
spring (1.3.6)
|
193
289
|
sprockets (2.12.4)
|
194
290
|
hike (~> 1.2)
|
195
291
|
multi_json (~> 1.0)
|
@@ -199,14 +295,17 @@ GEM
|
|
199
295
|
actionpack (>= 3.0)
|
200
296
|
activesupport (>= 3.0)
|
201
297
|
sprockets (>= 2.8, < 4.0)
|
298
|
+
systemu (2.6.5)
|
202
299
|
thor (0.19.1)
|
203
300
|
thread_safe (0.3.5)
|
204
301
|
tilt (1.4.1)
|
302
|
+
to_csv-rails (0.1.5)
|
303
|
+
to_xls-rails (1.3.1)
|
304
|
+
spreadsheet (>= 0.8.5)
|
205
305
|
treetop (1.4.15)
|
206
306
|
polyglot
|
207
307
|
polyglot (>= 0.3.1)
|
208
|
-
|
209
|
-
coffee-rails
|
308
|
+
ttfunk (1.4.0)
|
210
309
|
twitter (5.15.0)
|
211
310
|
addressable (~> 2.3)
|
212
311
|
buftok (~> 0.2.0)
|
@@ -226,18 +325,37 @@ GEM
|
|
226
325
|
unf (0.1.4)
|
227
326
|
unf_ext
|
228
327
|
unf_ext (0.0.7.1)
|
328
|
+
unicorn (4.9.0)
|
329
|
+
kgio (~> 2.6)
|
330
|
+
rack
|
331
|
+
raindrops (~> 0.7)
|
332
|
+
uuid (2.3.8)
|
333
|
+
macaddr (~> 1.0)
|
229
334
|
warden (1.2.3)
|
230
335
|
rack (>= 1.0)
|
336
|
+
whenever (0.9.4)
|
337
|
+
chronic (>= 0.6.3)
|
338
|
+
will_paginate (3.0.7)
|
339
|
+
wkhtmltopdf (0.1.2)
|
340
|
+
wkhtmltopdf-binary (0.9.9.3)
|
341
|
+
wkhtmltopdf-heroku (2.12.2.4)
|
231
342
|
|
232
343
|
PLATFORMS
|
233
344
|
ruby
|
234
345
|
|
235
346
|
DEPENDENCIES
|
347
|
+
activesupport (= 4.1.2)
|
348
|
+
aws-sdk (< 2.0)
|
349
|
+
barby
|
350
|
+
bower-rails (~> 0.9.2)
|
236
351
|
bundler (~> 1.9)
|
352
|
+
byebug
|
237
353
|
cancancan
|
238
354
|
coffee-rails (~> 4.0.0)
|
355
|
+
delayed_job_active_record
|
239
356
|
devise (~> 3.2)
|
240
357
|
devise_invitable (~> 1.3.4)
|
358
|
+
exception_notification (= 4.1.0.rc1)
|
241
359
|
jbuilder (~> 2.0)
|
242
360
|
jquery-rails
|
243
361
|
mailboxer!
|
@@ -246,15 +364,32 @@ DEPENDENCIES
|
|
246
364
|
omniauth-twitter
|
247
365
|
paperclip (~> 4.2)
|
248
366
|
paranoia (~> 2.0)
|
367
|
+
pdfkit
|
249
368
|
pg
|
250
369
|
pg_search
|
370
|
+
prawn-rails
|
251
371
|
pshq_engine!
|
372
|
+
pubnub-ruby
|
373
|
+
pushwoosh
|
374
|
+
rack-timeout
|
252
375
|
rails (= 4.1.2)
|
376
|
+
rails_12factor
|
253
377
|
rake (~> 10.0)
|
254
378
|
rolify (~> 4.0.0)
|
379
|
+
roo
|
380
|
+
rqrcode
|
381
|
+
rqrcode_png
|
255
382
|
sass-rails (~> 4.0.3)
|
256
383
|
sdoc (~> 0.4.0)
|
257
|
-
spring
|
258
|
-
|
384
|
+
spring (~> 1.3.6)
|
385
|
+
stripe!
|
386
|
+
to_csv-rails
|
387
|
+
to_xls-rails
|
259
388
|
twitter
|
260
389
|
uglifier (>= 1.3.0)
|
390
|
+
unicorn
|
391
|
+
whenever
|
392
|
+
will_paginate (~> 3.0.6)
|
393
|
+
wkhtmltopdf
|
394
|
+
wkhtmltopdf-binary
|
395
|
+
wkhtmltopdf-heroku
|
data/lib/pshq_engine/version.rb
CHANGED
data/lib/pshq_engine/version.rb~
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pshq_engine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Zeeshan
|
@@ -312,6 +312,7 @@ files:
|
|
312
312
|
- pkg/pshq_engine-0.0.3.gem
|
313
313
|
- pkg/pshq_engine-0.0.4.gem
|
314
314
|
- pkg/pshq_engine-0.0.5.gem
|
315
|
+
- pkg/pshq_engine-0.1.5.gem
|
315
316
|
- pshq_engine.gemspec
|
316
317
|
homepage:
|
317
318
|
licenses: []
|