jquery_dynamic_fields 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/.rspec +1 -0
- data/app/helpers/jquery_dynamic_fields/field_helper.rb +1 -1
- data/bin/autospec +16 -0
- data/bin/erubis +16 -0
- data/bin/guard +16 -0
- data/bin/htmldiff +16 -0
- data/bin/launchy +16 -0
- data/bin/ldiff +16 -0
- data/bin/nokogiri +16 -0
- data/bin/rackup +16 -0
- data/bin/rails +16 -0
- data/bin/rake +16 -0
- data/bin/rake2thor +16 -0
- data/bin/ri +16 -0
- data/bin/rspec +16 -0
- data/bin/thor +16 -0
- data/bin/tilt +16 -0
- data/bin/tt +16 -0
- data/jquery_dynamic_fields.gemspec +8 -0
- data/lib/jquery_dynamic_fields/version.rb +1 -1
- data/spec/dummy/.gitignore +15 -0
- data/spec/dummy/Gemfile +46 -0
- data/spec/dummy/README.rdoc +261 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/images/rails.png +0 -0
- data/spec/dummy/app/assets/javascripts/application.js +16 -0
- data/spec/dummy/app/assets/javascripts/tasklists.js.coffee +3 -0
- data/spec/dummy/app/assets/javascripts/tasks.js.coffee +3 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/assets/stylesheets/scaffolds.css.scss +56 -0
- data/spec/dummy/app/assets/stylesheets/tasklists.css.scss +3 -0
- data/spec/dummy/app/assets/stylesheets/tasks.css.scss +3 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/controllers/tasklists_controller.rb +83 -0
- data/spec/dummy/app/controllers/tasks_controller.rb +83 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/helpers/tasklists_helper.rb +2 -0
- data/spec/dummy/app/helpers/tasks_helper.rb +2 -0
- data/spec/dummy/app/mailers/.gitkeep +0 -0
- data/spec/dummy/app/models/.gitkeep +0 -0
- data/spec/dummy/app/models/task.rb +4 -0
- data/spec/dummy/app/models/tasklist.rb +5 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/app/views/tasklists/_form.html.erb +30 -0
- data/spec/dummy/app/views/tasklists/_task_fields.html.erb +7 -0
- data/spec/dummy/app/views/tasklists/edit.html.erb +6 -0
- data/spec/dummy/app/views/tasklists/index.html.erb +21 -0
- data/spec/dummy/app/views/tasklists/new.html.erb +5 -0
- data/spec/dummy/app/views/tasklists/show.html.erb +5 -0
- data/spec/dummy/bin/autospec +16 -0
- data/spec/dummy/bin/erubis +16 -0
- data/spec/dummy/bin/guard +16 -0
- data/spec/dummy/bin/htmldiff +16 -0
- data/spec/dummy/bin/ldiff +16 -0
- data/spec/dummy/bin/nokogiri +16 -0
- data/spec/dummy/bin/rackup +16 -0
- data/spec/dummy/bin/rails +16 -0
- data/spec/dummy/bin/rake +16 -0
- data/spec/dummy/bin/rake2thor +16 -0
- data/spec/dummy/bin/ri +16 -0
- data/spec/dummy/bin/rspec +16 -0
- data/spec/dummy/bin/sass +16 -0
- data/spec/dummy/bin/sass-convert +16 -0
- data/spec/dummy/bin/scss +16 -0
- data/spec/dummy/bin/thor +16 -0
- data/spec/dummy/bin/tilt +16 -0
- data/spec/dummy/bin/tt +16 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +68 -0
- data/spec/dummy/config/boot.rb +6 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +37 -0
- data/spec/dummy/config/environments/production.rb +67 -0
- data/spec/dummy/config/environments/test.rb +37 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +15 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/routes.rb +59 -0
- data/spec/dummy/db/migrate/20120618180254_create_tasklists.rb +9 -0
- data/spec/dummy/db/migrate/20120618180402_create_tasks.rb +10 -0
- data/spec/dummy/db/schema.rb +29 -0
- data/spec/dummy/db/seeds.rb +7 -0
- data/spec/dummy/lib/assets/.gitkeep +0 -0
- data/spec/dummy/lib/tasks/.gitkeep +0 -0
- data/spec/dummy/log/.gitkeep +0 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +25 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/public/index.html +241 -0
- data/spec/dummy/public/robots.txt +5 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/dummy/vendor/assets/javascripts/.gitkeep +0 -0
- data/spec/dummy/vendor/assets/stylesheets/.gitkeep +0 -0
- data/spec/dummy/vendor/plugins/.gitkeep +0 -0
- data/spec/requests/jquery_dynamic_fields_spec.rb +22 -0
- data/spec/spec_helper.rb +44 -0
- metadata +313 -4
@@ -0,0 +1,6 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
|
3
|
+
|
4
|
+
APP_PATH = File.expand_path('../../config/application', __FILE__)
|
5
|
+
require File.expand_path('../../config/boot', __FILE__)
|
6
|
+
require 'rails/commands'
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require File.expand_path("../../spec_helper", __FILE__)
|
2
|
+
|
3
|
+
describe "JqueryDynamicFields" do
|
4
|
+
describe "adding fields" do
|
5
|
+
it "adds a field", js: true do
|
6
|
+
visit new_tasklist_path
|
7
|
+
click_link "add a task"
|
8
|
+
page.should have_selector "label", text: "Label"
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
describe "removing fields" do
|
13
|
+
it "removes a field", js: true do
|
14
|
+
tasklist = Tasklist.create!(title: "Foo")
|
15
|
+
Task.create!(label: "bar", tasklist_id: tasklist.id)
|
16
|
+
visit edit_tasklist_path(tasklist)
|
17
|
+
page.should have_selector "input", value: "bar"
|
18
|
+
click_link "remove"
|
19
|
+
page.should_not have_content "bar"
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
# This file is copied to spec/ when you run 'rails generate rspec:install'
|
2
|
+
ENV["RAILS_ENV"] ||= 'test'
|
3
|
+
require File.expand_path("../dummy/config/environment.rb", __FILE__)
|
4
|
+
require 'rspec/rails'
|
5
|
+
require 'rspec/autorun'
|
6
|
+
require 'capybara/rspec'
|
7
|
+
|
8
|
+
# Requires supporting ruby files with custom matchers and macros, etc,
|
9
|
+
# in spec/support/ and its subdirectories.
|
10
|
+
Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f}
|
11
|
+
|
12
|
+
RSpec.configure do |config|
|
13
|
+
# ## Mock Framework
|
14
|
+
#
|
15
|
+
# If you prefer to use mocha, flexmock or RR, uncomment the appropriate line:
|
16
|
+
#
|
17
|
+
# config.mock_with :mocha
|
18
|
+
# config.mock_with :flexmock
|
19
|
+
# config.mock_with :rr
|
20
|
+
|
21
|
+
# Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
|
22
|
+
|
23
|
+
# If you're not using ActiveRecord, or you'd prefer not to run each of your
|
24
|
+
# examples within a transaction, remove the following line or assign false
|
25
|
+
# instead of true.
|
26
|
+
config.use_transactional_fixtures = false
|
27
|
+
|
28
|
+
config.before(:suite) do
|
29
|
+
DatabaseCleaner.strategy = :truncation
|
30
|
+
end
|
31
|
+
|
32
|
+
config.before(:each) do
|
33
|
+
DatabaseCleaner.start
|
34
|
+
end
|
35
|
+
|
36
|
+
config.after(:each) do
|
37
|
+
DatabaseCleaner.clean
|
38
|
+
end
|
39
|
+
|
40
|
+
# If true, the base class of anonymous controllers will be inferred
|
41
|
+
# automatically. This will be the default behavior in future versions of
|
42
|
+
# rspec-rails.
|
43
|
+
config.infer_base_class_for_anonymous_controllers = false
|
44
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jquery_dynamic_fields
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,25 +10,252 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
date: 2012-06-18 00:00:00.000000000 Z
|
13
|
-
dependencies:
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rails
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '3.2'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '3.2'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: sqlite3
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: rspec-rails
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: launchy
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ! '>='
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
type: :development
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ! '>='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
78
|
+
- !ruby/object:Gem::Dependency
|
79
|
+
name: guard-rspec
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
82
|
+
requirements:
|
83
|
+
- - ! '>='
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
86
|
+
type: :development
|
87
|
+
prerelease: false
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ! '>='
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
- !ruby/object:Gem::Dependency
|
95
|
+
name: capybara
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
98
|
+
requirements:
|
99
|
+
- - ! '>='
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '0'
|
102
|
+
type: :development
|
103
|
+
prerelease: false
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ! '>='
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
- !ruby/object:Gem::Dependency
|
111
|
+
name: database_cleaner
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
113
|
+
none: false
|
114
|
+
requirements:
|
115
|
+
- - ! '>='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
122
|
+
requirements:
|
123
|
+
- - ! '>='
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
14
126
|
description: Dynamically add and remove form fields in a Rails 3.1+ app
|
15
127
|
email:
|
16
128
|
- aaron@aaroncruz.com
|
17
|
-
executables:
|
129
|
+
executables:
|
130
|
+
- autospec
|
131
|
+
- erubis
|
132
|
+
- guard
|
133
|
+
- htmldiff
|
134
|
+
- launchy
|
135
|
+
- ldiff
|
136
|
+
- nokogiri
|
137
|
+
- rackup
|
138
|
+
- rails
|
139
|
+
- rake
|
140
|
+
- rake2thor
|
141
|
+
- ri
|
142
|
+
- rspec
|
143
|
+
- thor
|
144
|
+
- tilt
|
145
|
+
- tt
|
18
146
|
extensions: []
|
19
147
|
extra_rdoc_files: []
|
20
148
|
files:
|
21
149
|
- .gitignore
|
150
|
+
- .rspec
|
22
151
|
- Gemfile
|
23
152
|
- LICENSE
|
24
153
|
- README.md
|
25
154
|
- Rakefile
|
26
155
|
- app/assets/javascripts/jquery_dynamic_fields.js.coffee
|
27
156
|
- app/helpers/jquery_dynamic_fields/field_helper.rb
|
157
|
+
- bin/autospec
|
158
|
+
- bin/erubis
|
159
|
+
- bin/guard
|
160
|
+
- bin/htmldiff
|
161
|
+
- bin/launchy
|
162
|
+
- bin/ldiff
|
163
|
+
- bin/nokogiri
|
164
|
+
- bin/rackup
|
165
|
+
- bin/rails
|
166
|
+
- bin/rake
|
167
|
+
- bin/rake2thor
|
168
|
+
- bin/ri
|
169
|
+
- bin/rspec
|
170
|
+
- bin/thor
|
171
|
+
- bin/tilt
|
172
|
+
- bin/tt
|
28
173
|
- jquery_dynamic_fields.gemspec
|
29
174
|
- lib/jquery_dynamic_fields.rb
|
30
175
|
- lib/jquery_dynamic_fields/engine.rb
|
31
176
|
- lib/jquery_dynamic_fields/version.rb
|
177
|
+
- spec/dummy/.gitignore
|
178
|
+
- spec/dummy/Gemfile
|
179
|
+
- spec/dummy/README.rdoc
|
180
|
+
- spec/dummy/Rakefile
|
181
|
+
- spec/dummy/app/assets/images/rails.png
|
182
|
+
- spec/dummy/app/assets/javascripts/application.js
|
183
|
+
- spec/dummy/app/assets/javascripts/tasklists.js.coffee
|
184
|
+
- spec/dummy/app/assets/javascripts/tasks.js.coffee
|
185
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
186
|
+
- spec/dummy/app/assets/stylesheets/scaffolds.css.scss
|
187
|
+
- spec/dummy/app/assets/stylesheets/tasklists.css.scss
|
188
|
+
- spec/dummy/app/assets/stylesheets/tasks.css.scss
|
189
|
+
- spec/dummy/app/controllers/application_controller.rb
|
190
|
+
- spec/dummy/app/controllers/tasklists_controller.rb
|
191
|
+
- spec/dummy/app/controllers/tasks_controller.rb
|
192
|
+
- spec/dummy/app/helpers/application_helper.rb
|
193
|
+
- spec/dummy/app/helpers/tasklists_helper.rb
|
194
|
+
- spec/dummy/app/helpers/tasks_helper.rb
|
195
|
+
- spec/dummy/app/mailers/.gitkeep
|
196
|
+
- spec/dummy/app/models/.gitkeep
|
197
|
+
- spec/dummy/app/models/task.rb
|
198
|
+
- spec/dummy/app/models/tasklist.rb
|
199
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
200
|
+
- spec/dummy/app/views/tasklists/_form.html.erb
|
201
|
+
- spec/dummy/app/views/tasklists/_task_fields.html.erb
|
202
|
+
- spec/dummy/app/views/tasklists/edit.html.erb
|
203
|
+
- spec/dummy/app/views/tasklists/index.html.erb
|
204
|
+
- spec/dummy/app/views/tasklists/new.html.erb
|
205
|
+
- spec/dummy/app/views/tasklists/show.html.erb
|
206
|
+
- spec/dummy/bin/autospec
|
207
|
+
- spec/dummy/bin/erubis
|
208
|
+
- spec/dummy/bin/guard
|
209
|
+
- spec/dummy/bin/htmldiff
|
210
|
+
- spec/dummy/bin/ldiff
|
211
|
+
- spec/dummy/bin/nokogiri
|
212
|
+
- spec/dummy/bin/rackup
|
213
|
+
- spec/dummy/bin/rails
|
214
|
+
- spec/dummy/bin/rake
|
215
|
+
- spec/dummy/bin/rake2thor
|
216
|
+
- spec/dummy/bin/ri
|
217
|
+
- spec/dummy/bin/rspec
|
218
|
+
- spec/dummy/bin/sass
|
219
|
+
- spec/dummy/bin/sass-convert
|
220
|
+
- spec/dummy/bin/scss
|
221
|
+
- spec/dummy/bin/thor
|
222
|
+
- spec/dummy/bin/tilt
|
223
|
+
- spec/dummy/bin/tt
|
224
|
+
- spec/dummy/config.ru
|
225
|
+
- spec/dummy/config/application.rb
|
226
|
+
- spec/dummy/config/boot.rb
|
227
|
+
- spec/dummy/config/database.yml
|
228
|
+
- spec/dummy/config/environment.rb
|
229
|
+
- spec/dummy/config/environments/development.rb
|
230
|
+
- spec/dummy/config/environments/production.rb
|
231
|
+
- spec/dummy/config/environments/test.rb
|
232
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
233
|
+
- spec/dummy/config/initializers/inflections.rb
|
234
|
+
- spec/dummy/config/initializers/mime_types.rb
|
235
|
+
- spec/dummy/config/initializers/secret_token.rb
|
236
|
+
- spec/dummy/config/initializers/session_store.rb
|
237
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
238
|
+
- spec/dummy/config/locales/en.yml
|
239
|
+
- spec/dummy/config/routes.rb
|
240
|
+
- spec/dummy/db/migrate/20120618180254_create_tasklists.rb
|
241
|
+
- spec/dummy/db/migrate/20120618180402_create_tasks.rb
|
242
|
+
- spec/dummy/db/schema.rb
|
243
|
+
- spec/dummy/db/seeds.rb
|
244
|
+
- spec/dummy/lib/assets/.gitkeep
|
245
|
+
- spec/dummy/lib/tasks/.gitkeep
|
246
|
+
- spec/dummy/log/.gitkeep
|
247
|
+
- spec/dummy/public/404.html
|
248
|
+
- spec/dummy/public/422.html
|
249
|
+
- spec/dummy/public/500.html
|
250
|
+
- spec/dummy/public/favicon.ico
|
251
|
+
- spec/dummy/public/index.html
|
252
|
+
- spec/dummy/public/robots.txt
|
253
|
+
- spec/dummy/script/rails
|
254
|
+
- spec/dummy/vendor/assets/javascripts/.gitkeep
|
255
|
+
- spec/dummy/vendor/assets/stylesheets/.gitkeep
|
256
|
+
- spec/dummy/vendor/plugins/.gitkeep
|
257
|
+
- spec/requests/jquery_dynamic_fields_spec.rb
|
258
|
+
- spec/spec_helper.rb
|
32
259
|
homepage: https://github.com/pferdefleisch/jquery_dynamic_fields
|
33
260
|
licenses: []
|
34
261
|
post_install_message:
|
@@ -53,4 +280,86 @@ rubygems_version: 1.8.23
|
|
53
280
|
signing_key:
|
54
281
|
specification_version: 3
|
55
282
|
summary: Dynamically add and remove form fields in a Rails 3.1+ app
|
56
|
-
test_files:
|
283
|
+
test_files:
|
284
|
+
- spec/dummy/.gitignore
|
285
|
+
- spec/dummy/Gemfile
|
286
|
+
- spec/dummy/README.rdoc
|
287
|
+
- spec/dummy/Rakefile
|
288
|
+
- spec/dummy/app/assets/images/rails.png
|
289
|
+
- spec/dummy/app/assets/javascripts/application.js
|
290
|
+
- spec/dummy/app/assets/javascripts/tasklists.js.coffee
|
291
|
+
- spec/dummy/app/assets/javascripts/tasks.js.coffee
|
292
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
293
|
+
- spec/dummy/app/assets/stylesheets/scaffolds.css.scss
|
294
|
+
- spec/dummy/app/assets/stylesheets/tasklists.css.scss
|
295
|
+
- spec/dummy/app/assets/stylesheets/tasks.css.scss
|
296
|
+
- spec/dummy/app/controllers/application_controller.rb
|
297
|
+
- spec/dummy/app/controllers/tasklists_controller.rb
|
298
|
+
- spec/dummy/app/controllers/tasks_controller.rb
|
299
|
+
- spec/dummy/app/helpers/application_helper.rb
|
300
|
+
- spec/dummy/app/helpers/tasklists_helper.rb
|
301
|
+
- spec/dummy/app/helpers/tasks_helper.rb
|
302
|
+
- spec/dummy/app/mailers/.gitkeep
|
303
|
+
- spec/dummy/app/models/.gitkeep
|
304
|
+
- spec/dummy/app/models/task.rb
|
305
|
+
- spec/dummy/app/models/tasklist.rb
|
306
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
307
|
+
- spec/dummy/app/views/tasklists/_form.html.erb
|
308
|
+
- spec/dummy/app/views/tasklists/_task_fields.html.erb
|
309
|
+
- spec/dummy/app/views/tasklists/edit.html.erb
|
310
|
+
- spec/dummy/app/views/tasklists/index.html.erb
|
311
|
+
- spec/dummy/app/views/tasklists/new.html.erb
|
312
|
+
- spec/dummy/app/views/tasklists/show.html.erb
|
313
|
+
- spec/dummy/bin/autospec
|
314
|
+
- spec/dummy/bin/erubis
|
315
|
+
- spec/dummy/bin/guard
|
316
|
+
- spec/dummy/bin/htmldiff
|
317
|
+
- spec/dummy/bin/ldiff
|
318
|
+
- spec/dummy/bin/nokogiri
|
319
|
+
- spec/dummy/bin/rackup
|
320
|
+
- spec/dummy/bin/rails
|
321
|
+
- spec/dummy/bin/rake
|
322
|
+
- spec/dummy/bin/rake2thor
|
323
|
+
- spec/dummy/bin/ri
|
324
|
+
- spec/dummy/bin/rspec
|
325
|
+
- spec/dummy/bin/sass
|
326
|
+
- spec/dummy/bin/sass-convert
|
327
|
+
- spec/dummy/bin/scss
|
328
|
+
- spec/dummy/bin/thor
|
329
|
+
- spec/dummy/bin/tilt
|
330
|
+
- spec/dummy/bin/tt
|
331
|
+
- spec/dummy/config.ru
|
332
|
+
- spec/dummy/config/application.rb
|
333
|
+
- spec/dummy/config/boot.rb
|
334
|
+
- spec/dummy/config/database.yml
|
335
|
+
- spec/dummy/config/environment.rb
|
336
|
+
- spec/dummy/config/environments/development.rb
|
337
|
+
- spec/dummy/config/environments/production.rb
|
338
|
+
- spec/dummy/config/environments/test.rb
|
339
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
340
|
+
- spec/dummy/config/initializers/inflections.rb
|
341
|
+
- spec/dummy/config/initializers/mime_types.rb
|
342
|
+
- spec/dummy/config/initializers/secret_token.rb
|
343
|
+
- spec/dummy/config/initializers/session_store.rb
|
344
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
345
|
+
- spec/dummy/config/locales/en.yml
|
346
|
+
- spec/dummy/config/routes.rb
|
347
|
+
- spec/dummy/db/migrate/20120618180254_create_tasklists.rb
|
348
|
+
- spec/dummy/db/migrate/20120618180402_create_tasks.rb
|
349
|
+
- spec/dummy/db/schema.rb
|
350
|
+
- spec/dummy/db/seeds.rb
|
351
|
+
- spec/dummy/lib/assets/.gitkeep
|
352
|
+
- spec/dummy/lib/tasks/.gitkeep
|
353
|
+
- spec/dummy/log/.gitkeep
|
354
|
+
- spec/dummy/public/404.html
|
355
|
+
- spec/dummy/public/422.html
|
356
|
+
- spec/dummy/public/500.html
|
357
|
+
- spec/dummy/public/favicon.ico
|
358
|
+
- spec/dummy/public/index.html
|
359
|
+
- spec/dummy/public/robots.txt
|
360
|
+
- spec/dummy/script/rails
|
361
|
+
- spec/dummy/vendor/assets/javascripts/.gitkeep
|
362
|
+
- spec/dummy/vendor/assets/stylesheets/.gitkeep
|
363
|
+
- spec/dummy/vendor/plugins/.gitkeep
|
364
|
+
- spec/requests/jquery_dynamic_fields_spec.rb
|
365
|
+
- spec/spec_helper.rb
|