Description:
add fuzzy string matching gem for similarity check
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r648:4514b4701ae2 - - 2 files changed: 9 inserted, 0 deleted
@@ -1,88 +1,91 | |||||
|
1 | source 'https://rubygems.org' |
|
1 | source 'https://rubygems.org' |
|
2 |
|
2 | ||
|
3 | #rails |
|
3 | #rails |
|
4 | gem 'rails', '~>4.2.0' |
|
4 | gem 'rails', '~>4.2.0' |
|
5 | gem 'activerecord-session_store' |
|
5 | gem 'activerecord-session_store' |
|
6 |
|
6 | ||
|
7 |
|
7 | ||
|
8 | # Bundle edge Rails instead: |
|
8 | # Bundle edge Rails instead: |
|
9 | # gem 'rails', :git => 'git://github.com/rails/rails.git' |
|
9 | # gem 'rails', :git => 'git://github.com/rails/rails.git' |
|
10 |
|
10 | ||
|
11 | #---------------- database --------------------- |
|
11 | #---------------- database --------------------- |
|
12 | #the database |
|
12 | #the database |
|
13 | gem 'mysql2' |
|
13 | gem 'mysql2' |
|
14 | #for testing |
|
14 | #for testing |
|
15 | gem 'sqlite3' |
|
15 | gem 'sqlite3' |
|
16 | #for dumping database into yaml |
|
16 | #for dumping database into yaml |
|
17 | gem 'yaml_db' |
|
17 | gem 'yaml_db' |
|
18 |
|
18 | ||
|
19 | # Gems used only for assets and not required |
|
19 | # Gems used only for assets and not required |
|
20 | # in production environments by default. |
|
20 | # in production environments by default. |
|
21 | gem 'sass-rails' |
|
21 | gem 'sass-rails' |
|
22 | gem 'coffee-rails' |
|
22 | gem 'coffee-rails' |
|
23 |
|
23 | ||
|
24 | # See https://github.com/sstephenson/execjs#readme for more supported runtimes |
|
24 | # See https://github.com/sstephenson/execjs#readme for more supported runtimes |
|
25 | # gem 'therubyracer', :platforms => :ruby |
|
25 | # gem 'therubyracer', :platforms => :ruby |
|
26 |
|
26 | ||
|
27 | gem 'uglifier' |
|
27 | gem 'uglifier' |
|
28 |
|
28 | ||
|
29 | gem 'haml' |
|
29 | gem 'haml' |
|
30 | gem 'haml-rails' |
|
30 | gem 'haml-rails' |
|
31 | # gem 'prototype-rails' |
|
31 | # gem 'prototype-rails' |
|
32 |
|
32 | ||
|
33 | # To use ActiveModel has_secure_password |
|
33 | # To use ActiveModel has_secure_password |
|
34 | # gem 'bcrypt-ruby', '~> 3.0.0' |
|
34 | # gem 'bcrypt-ruby', '~> 3.0.0' |
|
35 |
|
35 | ||
|
36 | # To use Jbuilder templates for JSON |
|
36 | # To use Jbuilder templates for JSON |
|
37 | # gem 'jbuilder' |
|
37 | # gem 'jbuilder' |
|
38 |
|
38 | ||
|
39 | # Use unicorn as the app server |
|
39 | # Use unicorn as the app server |
|
40 | # gem 'unicorn' |
|
40 | # gem 'unicorn' |
|
41 |
|
41 | ||
|
42 | # Deploy with Capistrano |
|
42 | # Deploy with Capistrano |
|
43 | # gem 'capistrano' |
|
43 | # gem 'capistrano' |
|
44 |
|
44 | ||
|
45 | # To use debugger |
|
45 | # To use debugger |
|
46 | # gem 'debugger' |
|
46 | # gem 'debugger' |
|
47 | # |
|
47 | # |
|
48 |
|
48 | ||
|
49 | #in-place editor |
|
49 | #in-place editor |
|
50 | gem 'best_in_place', '~> 3.0.1' |
|
50 | gem 'best_in_place', '~> 3.0.1' |
|
51 |
|
51 | ||
|
52 | # jquery addition |
|
52 | # jquery addition |
|
53 | gem 'jquery-rails' |
|
53 | gem 'jquery-rails' |
|
54 | gem 'jquery-ui-rails' |
|
54 | gem 'jquery-ui-rails' |
|
55 | gem 'jquery-timepicker-addon-rails' |
|
55 | gem 'jquery-timepicker-addon-rails' |
|
56 | gem 'jquery-tablesorter' |
|
56 | gem 'jquery-tablesorter' |
|
57 | gem 'jquery-countdown-rails' |
|
57 | gem 'jquery-countdown-rails' |
|
58 |
|
58 | ||
|
59 | #syntax highlighter |
|
59 | #syntax highlighter |
|
60 | gem 'rouge' |
|
60 | gem 'rouge' |
|
61 |
|
61 | ||
|
62 | #add bootstrap |
|
62 | #add bootstrap |
|
63 | gem 'bootstrap-sass', '~> 3.2.0' |
|
63 | gem 'bootstrap-sass', '~> 3.2.0' |
|
64 | gem 'bootstrap-switch-rails' |
|
64 | gem 'bootstrap-switch-rails' |
|
65 | gem 'bootstrap-toggle-rails' |
|
65 | gem 'bootstrap-toggle-rails' |
|
66 | gem 'autoprefixer-rails' |
|
66 | gem 'autoprefixer-rails' |
|
67 |
|
67 | ||
|
68 | #bootstrap sortable |
|
68 | #bootstrap sortable |
|
69 | gem 'momentjs-rails' |
|
69 | gem 'momentjs-rails' |
|
70 | gem 'rails_bootstrap_sortable' |
|
70 | gem 'rails_bootstrap_sortable' |
|
71 |
|
71 | ||
|
72 | #----------- user interface ----------------- |
|
72 | #----------- user interface ----------------- |
|
73 | #select 2 |
|
73 | #select 2 |
|
74 | gem 'select2-rails' |
|
74 | gem 'select2-rails' |
|
75 | #ace editor |
|
75 | #ace editor |
|
76 | gem 'ace-rails-ap' |
|
76 | gem 'ace-rails-ap' |
|
77 | #paginator |
|
77 | #paginator |
|
78 | gem 'will_paginate', '~> 3.0.7' |
|
78 | gem 'will_paginate', '~> 3.0.7' |
|
79 |
|
79 | ||
|
80 | gem 'mail' |
|
80 | gem 'mail' |
|
81 | gem 'rdiscount' |
|
81 | gem 'rdiscount' |
|
82 | gem 'dynamic_form' |
|
82 | gem 'dynamic_form' |
|
83 | gem 'in_place_editing' |
|
83 | gem 'in_place_editing' |
|
84 | gem 'verification', :git => 'https://github.com/sikachu/verification.git' |
|
84 | gem 'verification', :git => 'https://github.com/sikachu/verification.git' |
|
85 |
|
85 | ||
|
86 |
|
86 | ||
|
87 | #---------------- testiing ----------------------- |
|
87 | #---------------- testiing ----------------------- |
|
88 | gem 'minitest-reporters' |
|
88 | gem 'minitest-reporters' |
|
|
89 | + | ||
|
|
90 | + #---------------- for console -------------------- | ||
|
|
91 | + gem 'fuzzy-string-match' |
@@ -1,229 +1,235 | |||||
|
1 | GIT |
|
1 | GIT |
|
2 | remote: https://github.com/sikachu/verification.git |
|
2 | remote: https://github.com/sikachu/verification.git |
|
3 | revision: ff31697b940d7b0e2ec65f08764215c96104e76d |
|
3 | revision: ff31697b940d7b0e2ec65f08764215c96104e76d |
|
4 | specs: |
|
4 | specs: |
|
5 | verification (1.0.3) |
|
5 | verification (1.0.3) |
|
6 | actionpack (>= 3.0.0, < 5.1) |
|
6 | actionpack (>= 3.0.0, < 5.1) |
|
7 | activesupport (>= 3.0.0, < 5.1) |
|
7 | activesupport (>= 3.0.0, < 5.1) |
|
8 |
|
8 | ||
|
9 | GEM |
|
9 | GEM |
|
10 | remote: https://rubygems.org/ |
|
10 | remote: https://rubygems.org/ |
|
11 | specs: |
|
11 | specs: |
|
|
12 | + RubyInline (3.12.4) | ||
|
|
13 | + ZenTest (~> 4.3) | ||
|
|
14 | + ZenTest (4.11.1) | ||
|
12 | ace-rails-ap (4.1.1) |
|
15 | ace-rails-ap (4.1.1) |
|
13 | actionmailer (4.2.7.1) |
|
16 | actionmailer (4.2.7.1) |
|
14 | actionpack (= 4.2.7.1) |
|
17 | actionpack (= 4.2.7.1) |
|
15 | actionview (= 4.2.7.1) |
|
18 | actionview (= 4.2.7.1) |
|
16 | activejob (= 4.2.7.1) |
|
19 | activejob (= 4.2.7.1) |
|
17 | mail (~> 2.5, >= 2.5.4) |
|
20 | mail (~> 2.5, >= 2.5.4) |
|
18 | rails-dom-testing (~> 1.0, >= 1.0.5) |
|
21 | rails-dom-testing (~> 1.0, >= 1.0.5) |
|
19 | actionpack (4.2.7.1) |
|
22 | actionpack (4.2.7.1) |
|
20 | actionview (= 4.2.7.1) |
|
23 | actionview (= 4.2.7.1) |
|
21 | activesupport (= 4.2.7.1) |
|
24 | activesupport (= 4.2.7.1) |
|
22 | rack (~> 1.6) |
|
25 | rack (~> 1.6) |
|
23 | rack-test (~> 0.6.2) |
|
26 | rack-test (~> 0.6.2) |
|
24 | rails-dom-testing (~> 1.0, >= 1.0.5) |
|
27 | rails-dom-testing (~> 1.0, >= 1.0.5) |
|
25 | rails-html-sanitizer (~> 1.0, >= 1.0.2) |
|
28 | rails-html-sanitizer (~> 1.0, >= 1.0.2) |
|
26 | actionview (4.2.7.1) |
|
29 | actionview (4.2.7.1) |
|
27 | activesupport (= 4.2.7.1) |
|
30 | activesupport (= 4.2.7.1) |
|
28 | builder (~> 3.1) |
|
31 | builder (~> 3.1) |
|
29 | erubis (~> 2.7.0) |
|
32 | erubis (~> 2.7.0) |
|
30 | rails-dom-testing (~> 1.0, >= 1.0.5) |
|
33 | rails-dom-testing (~> 1.0, >= 1.0.5) |
|
31 | rails-html-sanitizer (~> 1.0, >= 1.0.2) |
|
34 | rails-html-sanitizer (~> 1.0, >= 1.0.2) |
|
32 | activejob (4.2.7.1) |
|
35 | activejob (4.2.7.1) |
|
33 | activesupport (= 4.2.7.1) |
|
36 | activesupport (= 4.2.7.1) |
|
34 | globalid (>= 0.3.0) |
|
37 | globalid (>= 0.3.0) |
|
35 | activemodel (4.2.7.1) |
|
38 | activemodel (4.2.7.1) |
|
36 | activesupport (= 4.2.7.1) |
|
39 | activesupport (= 4.2.7.1) |
|
37 | builder (~> 3.1) |
|
40 | builder (~> 3.1) |
|
38 | activerecord (4.2.7.1) |
|
41 | activerecord (4.2.7.1) |
|
39 | activemodel (= 4.2.7.1) |
|
42 | activemodel (= 4.2.7.1) |
|
40 | activesupport (= 4.2.7.1) |
|
43 | activesupport (= 4.2.7.1) |
|
41 | arel (~> 6.0) |
|
44 | arel (~> 6.0) |
|
42 | activerecord-session_store (1.0.0) |
|
45 | activerecord-session_store (1.0.0) |
|
43 | actionpack (>= 4.0, < 5.1) |
|
46 | actionpack (>= 4.0, < 5.1) |
|
44 | activerecord (>= 4.0, < 5.1) |
|
47 | activerecord (>= 4.0, < 5.1) |
|
45 | multi_json (~> 1.11, >= 1.11.2) |
|
48 | multi_json (~> 1.11, >= 1.11.2) |
|
46 | rack (>= 1.5.2, < 3) |
|
49 | rack (>= 1.5.2, < 3) |
|
47 | railties (>= 4.0, < 5.1) |
|
50 | railties (>= 4.0, < 5.1) |
|
48 | activesupport (4.2.7.1) |
|
51 | activesupport (4.2.7.1) |
|
49 | i18n (~> 0.7) |
|
52 | i18n (~> 0.7) |
|
50 | json (~> 1.7, >= 1.7.7) |
|
53 | json (~> 1.7, >= 1.7.7) |
|
51 | minitest (~> 5.1) |
|
54 | minitest (~> 5.1) |
|
52 | thread_safe (~> 0.3, >= 0.3.4) |
|
55 | thread_safe (~> 0.3, >= 0.3.4) |
|
53 | tzinfo (~> 1.1) |
|
56 | tzinfo (~> 1.1) |
|
54 | ansi (1.5.0) |
|
57 | ansi (1.5.0) |
|
55 | arel (6.0.4) |
|
58 | arel (6.0.4) |
|
56 | autoprefixer-rails (6.6.0) |
|
59 | autoprefixer-rails (6.6.0) |
|
57 | execjs |
|
60 | execjs |
|
58 | best_in_place (3.0.3) |
|
61 | best_in_place (3.0.3) |
|
59 | actionpack (>= 3.2) |
|
62 | actionpack (>= 3.2) |
|
60 | railties (>= 3.2) |
|
63 | railties (>= 3.2) |
|
61 | bootstrap-sass (3.2.0.2) |
|
64 | bootstrap-sass (3.2.0.2) |
|
62 | sass (~> 3.2) |
|
65 | sass (~> 3.2) |
|
63 | bootstrap-switch-rails (3.3.3) |
|
66 | bootstrap-switch-rails (3.3.3) |
|
64 | bootstrap-toggle-rails (2.2.1.0) |
|
67 | bootstrap-toggle-rails (2.2.1.0) |
|
65 | builder (3.2.2) |
|
68 | builder (3.2.2) |
|
66 | coffee-rails (4.2.1) |
|
69 | coffee-rails (4.2.1) |
|
67 | coffee-script (>= 2.2.0) |
|
70 | coffee-script (>= 2.2.0) |
|
68 | railties (>= 4.0.0, < 5.2.x) |
|
71 | railties (>= 4.0.0, < 5.2.x) |
|
69 | coffee-script (2.4.1) |
|
72 | coffee-script (2.4.1) |
|
70 | coffee-script-source |
|
73 | coffee-script-source |
|
71 | execjs |
|
74 | execjs |
|
72 | coffee-script-source (1.12.2) |
|
75 | coffee-script-source (1.12.2) |
|
73 | concurrent-ruby (1.0.4) |
|
76 | concurrent-ruby (1.0.4) |
|
74 | dynamic_form (1.1.4) |
|
77 | dynamic_form (1.1.4) |
|
75 | erubis (2.7.0) |
|
78 | erubis (2.7.0) |
|
76 | execjs (2.7.0) |
|
79 | execjs (2.7.0) |
|
|
80 | + fuzzy-string-match (1.0.0) | ||
|
|
81 | + RubyInline (>= 3.8.6) | ||
|
77 | globalid (0.3.7) |
|
82 | globalid (0.3.7) |
|
78 | activesupport (>= 4.1.0) |
|
83 | activesupport (>= 4.1.0) |
|
79 | haml (4.0.7) |
|
84 | haml (4.0.7) |
|
80 | tilt |
|
85 | tilt |
|
81 | haml-rails (0.9.0) |
|
86 | haml-rails (0.9.0) |
|
82 | actionpack (>= 4.0.1) |
|
87 | actionpack (>= 4.0.1) |
|
83 | activesupport (>= 4.0.1) |
|
88 | activesupport (>= 4.0.1) |
|
84 | haml (>= 4.0.6, < 5.0) |
|
89 | haml (>= 4.0.6, < 5.0) |
|
85 | html2haml (>= 1.0.1) |
|
90 | html2haml (>= 1.0.1) |
|
86 | railties (>= 4.0.1) |
|
91 | railties (>= 4.0.1) |
|
87 | html2haml (2.0.0) |
|
92 | html2haml (2.0.0) |
|
88 | erubis (~> 2.7.0) |
|
93 | erubis (~> 2.7.0) |
|
89 | haml (~> 4.0.0) |
|
94 | haml (~> 4.0.0) |
|
90 | nokogiri (~> 1.6.0) |
|
95 | nokogiri (~> 1.6.0) |
|
91 | ruby_parser (~> 3.5) |
|
96 | ruby_parser (~> 3.5) |
|
92 | i18n (0.7.0) |
|
97 | i18n (0.7.0) |
|
93 | in_place_editing (1.2.0) |
|
98 | in_place_editing (1.2.0) |
|
94 | jquery-countdown-rails (2.0.2) |
|
99 | jquery-countdown-rails (2.0.2) |
|
95 | jquery-rails (4.2.1) |
|
100 | jquery-rails (4.2.1) |
|
96 | rails-dom-testing (>= 1, < 3) |
|
101 | rails-dom-testing (>= 1, < 3) |
|
97 | railties (>= 4.2.0) |
|
102 | railties (>= 4.2.0) |
|
98 | thor (>= 0.14, < 2.0) |
|
103 | thor (>= 0.14, < 2.0) |
|
99 | jquery-tablesorter (1.23.3) |
|
104 | jquery-tablesorter (1.23.3) |
|
100 | railties (>= 3.2, < 6) |
|
105 | railties (>= 3.2, < 6) |
|
101 | jquery-timepicker-addon-rails (1.4.1) |
|
106 | jquery-timepicker-addon-rails (1.4.1) |
|
102 | railties (>= 3.1) |
|
107 | railties (>= 3.1) |
|
103 | jquery-ui-rails (6.0.1) |
|
108 | jquery-ui-rails (6.0.1) |
|
104 | railties (>= 3.2.16) |
|
109 | railties (>= 3.2.16) |
|
105 | json (1.8.3) |
|
110 | json (1.8.3) |
|
106 | loofah (2.0.3) |
|
111 | loofah (2.0.3) |
|
107 | nokogiri (>= 1.5.9) |
|
112 | nokogiri (>= 1.5.9) |
|
108 | mail (2.6.4) |
|
113 | mail (2.6.4) |
|
109 | mime-types (>= 1.16, < 4) |
|
114 | mime-types (>= 1.16, < 4) |
|
110 | mime-types (3.1) |
|
115 | mime-types (3.1) |
|
111 | mime-types-data (~> 3.2015) |
|
116 | mime-types-data (~> 3.2015) |
|
112 | mime-types-data (3.2016.0521) |
|
117 | mime-types-data (3.2016.0521) |
|
113 | mini_portile2 (2.1.0) |
|
118 | mini_portile2 (2.1.0) |
|
114 | minitest (5.10.1) |
|
119 | minitest (5.10.1) |
|
115 | minitest-reporters (1.1.13) |
|
120 | minitest-reporters (1.1.13) |
|
116 | ansi |
|
121 | ansi |
|
117 | builder |
|
122 | builder |
|
118 | minitest (>= 5.0) |
|
123 | minitest (>= 5.0) |
|
119 | ruby-progressbar |
|
124 | ruby-progressbar |
|
120 | momentjs-rails (2.15.1) |
|
125 | momentjs-rails (2.15.1) |
|
121 | railties (>= 3.1) |
|
126 | railties (>= 3.1) |
|
122 | multi_json (1.12.1) |
|
127 | multi_json (1.12.1) |
|
123 | mysql2 (0.4.5) |
|
128 | mysql2 (0.4.5) |
|
124 | nokogiri (1.6.8.1) |
|
129 | nokogiri (1.6.8.1) |
|
125 | mini_portile2 (~> 2.1.0) |
|
130 | mini_portile2 (~> 2.1.0) |
|
126 | rack (1.6.5) |
|
131 | rack (1.6.5) |
|
127 | rack-test (0.6.3) |
|
132 | rack-test (0.6.3) |
|
128 | rack (>= 1.0) |
|
133 | rack (>= 1.0) |
|
129 | rails (4.2.7.1) |
|
134 | rails (4.2.7.1) |
|
130 | actionmailer (= 4.2.7.1) |
|
135 | actionmailer (= 4.2.7.1) |
|
131 | actionpack (= 4.2.7.1) |
|
136 | actionpack (= 4.2.7.1) |
|
132 | actionview (= 4.2.7.1) |
|
137 | actionview (= 4.2.7.1) |
|
133 | activejob (= 4.2.7.1) |
|
138 | activejob (= 4.2.7.1) |
|
134 | activemodel (= 4.2.7.1) |
|
139 | activemodel (= 4.2.7.1) |
|
135 | activerecord (= 4.2.7.1) |
|
140 | activerecord (= 4.2.7.1) |
|
136 | activesupport (= 4.2.7.1) |
|
141 | activesupport (= 4.2.7.1) |
|
137 | bundler (>= 1.3.0, < 2.0) |
|
142 | bundler (>= 1.3.0, < 2.0) |
|
138 | railties (= 4.2.7.1) |
|
143 | railties (= 4.2.7.1) |
|
139 | sprockets-rails |
|
144 | sprockets-rails |
|
140 | rails-deprecated_sanitizer (1.0.3) |
|
145 | rails-deprecated_sanitizer (1.0.3) |
|
141 | activesupport (>= 4.2.0.alpha) |
|
146 | activesupport (>= 4.2.0.alpha) |
|
142 | rails-dom-testing (1.0.8) |
|
147 | rails-dom-testing (1.0.8) |
|
143 | activesupport (>= 4.2.0.beta, < 5.0) |
|
148 | activesupport (>= 4.2.0.beta, < 5.0) |
|
144 | nokogiri (~> 1.6) |
|
149 | nokogiri (~> 1.6) |
|
145 | rails-deprecated_sanitizer (>= 1.0.1) |
|
150 | rails-deprecated_sanitizer (>= 1.0.1) |
|
146 | rails-html-sanitizer (1.0.3) |
|
151 | rails-html-sanitizer (1.0.3) |
|
147 | loofah (~> 2.0) |
|
152 | loofah (~> 2.0) |
|
148 | rails_bootstrap_sortable (2.0.1) |
|
153 | rails_bootstrap_sortable (2.0.1) |
|
149 | momentjs-rails (>= 2.8.3) |
|
154 | momentjs-rails (>= 2.8.3) |
|
150 | railties (4.2.7.1) |
|
155 | railties (4.2.7.1) |
|
151 | actionpack (= 4.2.7.1) |
|
156 | actionpack (= 4.2.7.1) |
|
152 | activesupport (= 4.2.7.1) |
|
157 | activesupport (= 4.2.7.1) |
|
153 | rake (>= 0.8.7) |
|
158 | rake (>= 0.8.7) |
|
154 | thor (>= 0.18.1, < 2.0) |
|
159 | thor (>= 0.18.1, < 2.0) |
|
155 | rake (12.0.0) |
|
160 | rake (12.0.0) |
|
156 | rdiscount (2.2.0.1) |
|
161 | rdiscount (2.2.0.1) |
|
157 | rouge (2.0.7) |
|
162 | rouge (2.0.7) |
|
158 | ruby-progressbar (1.8.1) |
|
163 | ruby-progressbar (1.8.1) |
|
159 | ruby_parser (3.8.3) |
|
164 | ruby_parser (3.8.3) |
|
160 | sexp_processor (~> 4.1) |
|
165 | sexp_processor (~> 4.1) |
|
161 | sass (3.4.23) |
|
166 | sass (3.4.23) |
|
162 | sass-rails (5.0.6) |
|
167 | sass-rails (5.0.6) |
|
163 | railties (>= 4.0.0, < 6) |
|
168 | railties (>= 4.0.0, < 6) |
|
164 | sass (~> 3.1) |
|
169 | sass (~> 3.1) |
|
165 | sprockets (>= 2.8, < 4.0) |
|
170 | sprockets (>= 2.8, < 4.0) |
|
166 | sprockets-rails (>= 2.0, < 4.0) |
|
171 | sprockets-rails (>= 2.0, < 4.0) |
|
167 | tilt (>= 1.1, < 3) |
|
172 | tilt (>= 1.1, < 3) |
|
168 | select2-rails (4.0.3) |
|
173 | select2-rails (4.0.3) |
|
169 | thor (~> 0.14) |
|
174 | thor (~> 0.14) |
|
170 | sexp_processor (4.7.0) |
|
175 | sexp_processor (4.7.0) |
|
171 | sprockets (3.7.1) |
|
176 | sprockets (3.7.1) |
|
172 | concurrent-ruby (~> 1.0) |
|
177 | concurrent-ruby (~> 1.0) |
|
173 | rack (> 1, < 3) |
|
178 | rack (> 1, < 3) |
|
174 | sprockets-rails (3.2.0) |
|
179 | sprockets-rails (3.2.0) |
|
175 | actionpack (>= 4.0) |
|
180 | actionpack (>= 4.0) |
|
176 | activesupport (>= 4.0) |
|
181 | activesupport (>= 4.0) |
|
177 | sprockets (>= 3.0.0) |
|
182 | sprockets (>= 3.0.0) |
|
178 | sqlite3 (1.3.12) |
|
183 | sqlite3 (1.3.12) |
|
179 | thor (0.19.4) |
|
184 | thor (0.19.4) |
|
180 | thread_safe (0.3.5) |
|
185 | thread_safe (0.3.5) |
|
181 | tilt (2.0.5) |
|
186 | tilt (2.0.5) |
|
182 | tzinfo (1.2.2) |
|
187 | tzinfo (1.2.2) |
|
183 | thread_safe (~> 0.1) |
|
188 | thread_safe (~> 0.1) |
|
184 | uglifier (3.0.4) |
|
189 | uglifier (3.0.4) |
|
185 | execjs (>= 0.3.0, < 3) |
|
190 | execjs (>= 0.3.0, < 3) |
|
186 | will_paginate (3.0.12) |
|
191 | will_paginate (3.0.12) |
|
187 | yaml_db (0.4.2) |
|
192 | yaml_db (0.4.2) |
|
188 | rails (>= 3.0, < 5.1) |
|
193 | rails (>= 3.0, < 5.1) |
|
189 | rake (>= 0.8.7) |
|
194 | rake (>= 0.8.7) |
|
190 |
|
195 | ||
|
191 | PLATFORMS |
|
196 | PLATFORMS |
|
192 | ruby |
|
197 | ruby |
|
193 |
|
198 | ||
|
194 | DEPENDENCIES |
|
199 | DEPENDENCIES |
|
195 | ace-rails-ap |
|
200 | ace-rails-ap |
|
196 | activerecord-session_store |
|
201 | activerecord-session_store |
|
197 | autoprefixer-rails |
|
202 | autoprefixer-rails |
|
198 | best_in_place (~> 3.0.1) |
|
203 | best_in_place (~> 3.0.1) |
|
199 | bootstrap-sass (~> 3.2.0) |
|
204 | bootstrap-sass (~> 3.2.0) |
|
200 | bootstrap-switch-rails |
|
205 | bootstrap-switch-rails |
|
201 | bootstrap-toggle-rails |
|
206 | bootstrap-toggle-rails |
|
202 | coffee-rails |
|
207 | coffee-rails |
|
203 | dynamic_form |
|
208 | dynamic_form |
|
|
209 | + fuzzy-string-match | ||
|
204 | haml |
|
210 | haml |
|
205 | haml-rails |
|
211 | haml-rails |
|
206 | in_place_editing |
|
212 | in_place_editing |
|
207 | jquery-countdown-rails |
|
213 | jquery-countdown-rails |
|
208 | jquery-rails |
|
214 | jquery-rails |
|
209 | jquery-tablesorter |
|
215 | jquery-tablesorter |
|
210 | jquery-timepicker-addon-rails |
|
216 | jquery-timepicker-addon-rails |
|
211 | jquery-ui-rails |
|
217 | jquery-ui-rails |
|
212 |
|
218 | ||
|
213 | minitest-reporters |
|
219 | minitest-reporters |
|
214 | momentjs-rails |
|
220 | momentjs-rails |
|
215 | mysql2 |
|
221 | mysql2 |
|
216 | rails (~> 4.2.0) |
|
222 | rails (~> 4.2.0) |
|
217 | rails_bootstrap_sortable |
|
223 | rails_bootstrap_sortable |
|
218 | rdiscount |
|
224 | rdiscount |
|
219 | rouge |
|
225 | rouge |
|
220 | sass-rails |
|
226 | sass-rails |
|
221 | select2-rails |
|
227 | select2-rails |
|
222 | sqlite3 |
|
228 | sqlite3 |
|
223 | uglifier |
|
229 | uglifier |
|
224 | verification! |
|
230 | verification! |
|
225 | will_paginate (~> 3.0.7) |
|
231 | will_paginate (~> 3.0.7) |
|
226 | yaml_db |
|
232 | yaml_db |
|
227 |
|
233 | ||
|
228 | BUNDLED WITH |
|
234 | BUNDLED WITH |
|
229 | 1.13.6 |
|
235 | 1.13.6 |
You need to be logged in to leave comments.
Login now