Description:
moved in_place_editing from plug-in to gem
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r325:3eedf28d086b - - 8 files changed: 3 inserted, 203 deleted
@@ -1,48 +1,49 | |||
|
1 | 1 | source 'https://rubygems.org' |
|
2 | 2 | |
|
3 | 3 | gem 'rails', '3.2.8' |
|
4 | 4 | |
|
5 | 5 | # Bundle edge Rails instead: |
|
6 | 6 | # gem 'rails', :git => 'git://github.com/rails/rails.git' |
|
7 | 7 | |
|
8 | 8 | gem 'mysql2' |
|
9 | 9 | |
|
10 | 10 | # Gems used only for assets and not required |
|
11 | 11 | # in production environments by default. |
|
12 | 12 | group :assets do |
|
13 | 13 | gem 'sass-rails', '~> 3.2.3' |
|
14 | 14 | gem 'coffee-rails', '~> 3.2.1' |
|
15 | 15 | |
|
16 | 16 | # See https://github.com/sstephenson/execjs#readme for more supported runtimes |
|
17 | 17 | # gem 'therubyracer', :platforms => :ruby |
|
18 | 18 | |
|
19 | 19 | gem 'uglifier', '>= 1.0.3' |
|
20 | 20 | end |
|
21 | 21 | |
|
22 | 22 | gem 'prototype-rails' |
|
23 | 23 | |
|
24 | 24 | # To use ActiveModel has_secure_password |
|
25 | 25 | # gem 'bcrypt-ruby', '~> 3.0.0' |
|
26 | 26 | |
|
27 | 27 | # To use Jbuilder templates for JSON |
|
28 | 28 | # gem 'jbuilder' |
|
29 | 29 | |
|
30 | 30 | # Use unicorn as the app server |
|
31 | 31 | # gem 'unicorn' |
|
32 | 32 | |
|
33 | 33 | # Deploy with Capistrano |
|
34 | 34 | # gem 'capistrano' |
|
35 | 35 | |
|
36 | 36 | # To use debugger |
|
37 | 37 | # gem 'debugger' |
|
38 | 38 | |
|
39 | 39 | gem "haml" |
|
40 | 40 | gem "tmail" |
|
41 | 41 | gem "rdiscount" |
|
42 | 42 | gem "test-unit" |
|
43 | 43 | gem 'will_paginate', '~> 3.0.0' |
|
44 | 44 | gem 'dynamic_form' |
|
45 | + gem 'in_place_editing' | |
|
45 | 46 | |
|
46 | 47 | group :test, :development do |
|
47 | 48 | gem "rspec-rails", "~> 2.0" |
|
48 | 49 | end |
@@ -1,137 +1,139 | |||
|
1 | 1 | GEM |
|
2 | 2 | remote: https://rubygems.org/ |
|
3 | 3 | specs: |
|
4 | 4 | actionmailer (3.2.8) |
|
5 | 5 | actionpack (= 3.2.8) |
|
6 | 6 | mail (~> 2.4.4) |
|
7 | 7 | actionpack (3.2.8) |
|
8 | 8 | activemodel (= 3.2.8) |
|
9 | 9 | activesupport (= 3.2.8) |
|
10 | 10 | builder (~> 3.0.0) |
|
11 | 11 | erubis (~> 2.7.0) |
|
12 | 12 | journey (~> 1.0.4) |
|
13 | 13 | rack (~> 1.4.0) |
|
14 | 14 | rack-cache (~> 1.2) |
|
15 | 15 | rack-test (~> 0.6.1) |
|
16 | 16 | sprockets (~> 2.1.3) |
|
17 | 17 | activemodel (3.2.8) |
|
18 | 18 | activesupport (= 3.2.8) |
|
19 | 19 | builder (~> 3.0.0) |
|
20 | 20 | activerecord (3.2.8) |
|
21 | 21 | activemodel (= 3.2.8) |
|
22 | 22 | activesupport (= 3.2.8) |
|
23 | 23 | arel (~> 3.0.2) |
|
24 | 24 | tzinfo (~> 0.3.29) |
|
25 | 25 | activeresource (3.2.8) |
|
26 | 26 | activemodel (= 3.2.8) |
|
27 | 27 | activesupport (= 3.2.8) |
|
28 | 28 | activesupport (3.2.8) |
|
29 | 29 | i18n (~> 0.6) |
|
30 | 30 | multi_json (~> 1.0) |
|
31 | 31 | arel (3.0.2) |
|
32 | 32 | builder (3.0.3) |
|
33 | 33 | coffee-rails (3.2.2) |
|
34 | 34 | coffee-script (>= 2.2.0) |
|
35 | 35 | railties (~> 3.2.0) |
|
36 | 36 | coffee-script (2.2.0) |
|
37 | 37 | coffee-script-source |
|
38 | 38 | execjs |
|
39 | 39 | coffee-script-source (1.3.3) |
|
40 | 40 | diff-lcs (1.1.3) |
|
41 | 41 | dynamic_form (1.1.4) |
|
42 | 42 | erubis (2.7.0) |
|
43 | 43 | execjs (1.4.0) |
|
44 | 44 | multi_json (~> 1.0) |
|
45 | 45 | haml (3.1.7) |
|
46 | 46 | hike (1.2.1) |
|
47 | 47 | i18n (0.6.1) |
|
48 | + in_place_editing (1.2.0) | |
|
48 | 49 | journey (1.0.4) |
|
49 | 50 | json (1.7.5) |
|
50 | 51 | mail (2.4.4) |
|
51 | 52 | i18n (>= 0.4.0) |
|
52 | 53 | mime-types (~> 1.16) |
|
53 | 54 | treetop (~> 1.4.8) |
|
54 | 55 | mime-types (1.19) |
|
55 | 56 | multi_json (1.3.6) |
|
56 | 57 | mysql2 (0.3.11) |
|
57 | 58 | polyglot (0.3.3) |
|
58 | 59 | prototype-rails (3.2.1) |
|
59 | 60 | rails (~> 3.2) |
|
60 | 61 | rack (1.4.1) |
|
61 | 62 | rack-cache (1.2) |
|
62 | 63 | rack (>= 0.4) |
|
63 | 64 | rack-ssl (1.3.2) |
|
64 | 65 | rack |
|
65 | 66 | rack-test (0.6.2) |
|
66 | 67 | rack (>= 1.0) |
|
67 | 68 | rails (3.2.8) |
|
68 | 69 | actionmailer (= 3.2.8) |
|
69 | 70 | actionpack (= 3.2.8) |
|
70 | 71 | activerecord (= 3.2.8) |
|
71 | 72 | activeresource (= 3.2.8) |
|
72 | 73 | activesupport (= 3.2.8) |
|
73 | 74 | bundler (~> 1.0) |
|
74 | 75 | railties (= 3.2.8) |
|
75 | 76 | railties (3.2.8) |
|
76 | 77 | actionpack (= 3.2.8) |
|
77 | 78 | activesupport (= 3.2.8) |
|
78 | 79 | rack-ssl (~> 1.3.2) |
|
79 | 80 | rake (>= 0.8.7) |
|
80 | 81 | rdoc (~> 3.4) |
|
81 | 82 | thor (>= 0.14.6, < 2.0) |
|
82 | 83 | rake (0.9.2.2) |
|
83 | 84 | rdiscount (1.6.8) |
|
84 | 85 | rdoc (3.12) |
|
85 | 86 | json (~> 1.4) |
|
86 | 87 | rspec (2.11.0) |
|
87 | 88 | rspec-core (~> 2.11.0) |
|
88 | 89 | rspec-expectations (~> 2.11.0) |
|
89 | 90 | rspec-mocks (~> 2.11.0) |
|
90 | 91 | rspec-core (2.11.1) |
|
91 | 92 | rspec-expectations (2.11.3) |
|
92 | 93 | diff-lcs (~> 1.1.3) |
|
93 | 94 | rspec-mocks (2.11.3) |
|
94 | 95 | rspec-rails (2.11.0) |
|
95 | 96 | actionpack (>= 3.0) |
|
96 | 97 | activesupport (>= 3.0) |
|
97 | 98 | railties (>= 3.0) |
|
98 | 99 | rspec (~> 2.11.0) |
|
99 | 100 | sass (3.2.1) |
|
100 | 101 | sass-rails (3.2.5) |
|
101 | 102 | railties (~> 3.2.0) |
|
102 | 103 | sass (>= 3.1.10) |
|
103 | 104 | tilt (~> 1.3) |
|
104 | 105 | sprockets (2.1.3) |
|
105 | 106 | hike (~> 1.2) |
|
106 | 107 | rack (~> 1.0) |
|
107 | 108 | tilt (~> 1.1, != 1.3.0) |
|
108 | 109 | test-unit (2.5.2) |
|
109 | 110 | thor (0.16.0) |
|
110 | 111 | tilt (1.3.3) |
|
111 | 112 | tmail (1.2.7.1) |
|
112 | 113 | treetop (1.4.10) |
|
113 | 114 | polyglot |
|
114 | 115 | polyglot (>= 0.3.1) |
|
115 | 116 | tzinfo (0.3.33) |
|
116 | 117 | uglifier (1.3.0) |
|
117 | 118 | execjs (>= 0.3.0) |
|
118 | 119 | multi_json (~> 1.0, >= 1.0.2) |
|
119 | 120 | will_paginate (3.0.3) |
|
120 | 121 | |
|
121 | 122 | PLATFORMS |
|
122 | 123 | ruby |
|
123 | 124 | |
|
124 | 125 | DEPENDENCIES |
|
125 | 126 | coffee-rails (~> 3.2.1) |
|
126 | 127 | dynamic_form |
|
127 | 128 | haml |
|
129 | + in_place_editing | |
|
128 | 130 | mysql2 |
|
129 | 131 | prototype-rails |
|
130 | 132 | rails (= 3.2.8) |
|
131 | 133 | rdiscount |
|
132 | 134 | rspec-rails (~> 2.0) |
|
133 | 135 | sass-rails (~> 3.2.3) |
|
134 | 136 | test-unit |
|
135 | 137 | tmail |
|
136 | 138 | uglifier (>= 1.0.3) |
|
137 | 139 | will_paginate (~> 3.0.0) |
deleted file |
deleted file |
deleted file |
deleted file |
deleted file |
deleted file |
You need to be logged in to leave comments.
Login now