surveyor 0.16.0 → 0.16.1
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.
- data/MIT-LICENSE +1 -1
- data/README.md +10 -0
- data/VERSION +1 -1
- data/app/controllers/results_controller.rb +3 -2
- data/app/views/results/index.html.erb +1 -1
- data/app/views/results/show.html.erb +1 -1
- data/app/views/surveyor/edit.html.haml +1 -1
- data/config/routes.rb +5 -6
- data/generators/surveyor/templates/locales/surveyor_en.yml +1 -0
- data/generators/surveyor/templates/locales/surveyor_es.yml +17 -0
- data/generators/surveyor/templates/locales/surveyor_he.yml +1 -1
- data/surveyor.gemspec +3 -2
- metadata +5 -4
data/MIT-LICENSE
CHANGED
data/README.md
CHANGED
@@ -114,6 +114,16 @@ To work on the plugin code (for enhancements, and bug fixes, etc...) fork this g
|
|
114
114
|
|
115
115
|
# Changes
|
116
116
|
|
117
|
+
0.16.1
|
118
|
+
|
119
|
+
* fixed surveyor.sections translation line
|
120
|
+
* changed map resources order to access results survey success
|
121
|
+
* add translations for Sections title
|
122
|
+
* Add I18n to Sections title
|
123
|
+
* updated date on license
|
124
|
+
* updating results views and controller for new paths
|
125
|
+
* new results routes
|
126
|
+
|
117
127
|
0.16.0
|
118
128
|
|
119
129
|
* minor fixes to unparsing
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.16.
|
1
|
+
0.16.1
|
@@ -1,12 +1,13 @@
|
|
1
1
|
class ResultsController < ApplicationController
|
2
|
+
helper 'surveyor'
|
2
3
|
layout 'results'
|
3
4
|
def index
|
4
5
|
@surveys = Survey.all
|
5
6
|
end
|
6
7
|
|
7
8
|
def show
|
8
|
-
@survey = Survey.
|
9
|
+
@survey = Survey.find_by_access_code(params[:survey_code])
|
9
10
|
@response_sets = @survey.response_sets
|
10
|
-
@questions =
|
11
|
+
@questions = @survey.sections_with_questions.map(&:questions).flatten
|
11
12
|
end
|
12
13
|
end
|
@@ -11,7 +11,7 @@
|
|
11
11
|
<tr>
|
12
12
|
<td><%=h survey.id %></td>
|
13
13
|
<td><%=h survey.title %></td>
|
14
|
-
<td><%= link_to "show results list(#{survey.response_sets.count})",
|
14
|
+
<td><%= link_to "show results list(#{survey.response_sets.count})", result_path(survey.access_code) %></td>
|
15
15
|
</tr>
|
16
16
|
<% end %>
|
17
17
|
</table>
|
data/config/routes.rb
CHANGED
@@ -1,4 +1,8 @@
|
|
1
1
|
ActionController::Routing::Routes.draw do |map|
|
2
|
+
map.with_options :controller => 'results' do |r|
|
3
|
+
r.results "results", :conditions => {:method => :get}, :action => "index"
|
4
|
+
r.result "results/:survey_code", :conditions => {:method => :get}, :action => "show"
|
5
|
+
end
|
2
6
|
map.with_options :controller => 'surveyor' do |s|
|
3
7
|
s.available_surveys "surveys", :conditions => {:method => :get}, :action => "new" # GET survey list
|
4
8
|
s.take_survey "surveys/:survey_code", :conditions => {:method => :post}, :action => "create" # Only POST of survey to create
|
@@ -6,9 +10,4 @@ ActionController::Routing::Routes.draw do |map|
|
|
6
10
|
s.edit_my_survey "surveys/:survey_code/:response_set_code/take", :conditions => {:method => :get}, :action => "edit" # GET editable survey
|
7
11
|
s.update_my_survey "surveys/:survey_code/:response_set_code", :conditions => {:method => :put}, :action => "update" # PUT edited survey
|
8
12
|
end
|
9
|
-
|
10
|
-
map.with_options :controller => 'results' do |r|
|
11
|
-
r.show_surveys_result_lists "surveys/results", :conditions => {:method => :get}, :action => "index"
|
12
|
-
r.show_one_survey_results "surveys/:id/result", :conditions => {:method => :get}, :action => "show"
|
13
|
-
end
|
14
|
-
end
|
13
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# Sample localization file for Spanish. Add more files in this directory for other locales.
|
2
|
+
# See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
|
3
|
+
|
4
|
+
es:
|
5
|
+
surveyor:
|
6
|
+
take_these_surveys: "Bienvenido, usted puede tomar estas encuestas"
|
7
|
+
take_it: "Tomar"
|
8
|
+
completed_survey: "Encuesta completada"
|
9
|
+
unable_to_find_your_responses: "No se puede encontrar sus respuestas a la encuesta"
|
10
|
+
unable_to_update_survey: "No se puede actualizar la encuesta"
|
11
|
+
unable_to_find_that_survey: "No se puede encontrar la encuesta"
|
12
|
+
survey_started_success: "Encuesta iniciada correctamente"
|
13
|
+
click_here_to_finish: "Haga clic aquí para terminar"
|
14
|
+
previous_section: "« Sección anterior"
|
15
|
+
next_section: "Sección siguiente »"
|
16
|
+
select_one: "Seleccione una ..."
|
17
|
+
sections: "Secciones"
|
data/surveyor.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{surveyor}
|
8
|
-
s.version = "0.16.
|
8
|
+
s.version = "0.16.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Brian Chamberlain", "Mark Yoon"]
|
12
|
-
s.date = %q{2010-
|
12
|
+
s.date = %q{2010-11-02}
|
13
13
|
s.email = %q{yoon@northwestern.edu}
|
14
14
|
s.extra_rdoc_files = [
|
15
15
|
"README.md"
|
@@ -113,6 +113,7 @@ Gem::Specification.new do |s|
|
|
113
113
|
"generators/surveyor/templates/assets/stylesheets/sass/surveyor.sass",
|
114
114
|
"generators/surveyor/templates/assets/stylesheets/ui.theme.css",
|
115
115
|
"generators/surveyor/templates/locales/surveyor_en.yml",
|
116
|
+
"generators/surveyor/templates/locales/surveyor_es.yml",
|
116
117
|
"generators/surveyor/templates/locales/surveyor_he.yml",
|
117
118
|
"generators/surveyor/templates/migrate/add_correct_answer_id_to_questions.rb",
|
118
119
|
"generators/surveyor/templates/migrate/add_display_order_to_surveys.rb",
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: surveyor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 93
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 16
|
9
|
-
-
|
10
|
-
version: 0.16.
|
9
|
+
- 1
|
10
|
+
version: 0.16.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Brian Chamberlain
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2010-
|
19
|
+
date: 2010-11-02 00:00:00 -05:00
|
20
20
|
default_executable:
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
@@ -154,6 +154,7 @@ files:
|
|
154
154
|
- generators/surveyor/templates/assets/stylesheets/sass/surveyor.sass
|
155
155
|
- generators/surveyor/templates/assets/stylesheets/ui.theme.css
|
156
156
|
- generators/surveyor/templates/locales/surveyor_en.yml
|
157
|
+
- generators/surveyor/templates/locales/surveyor_es.yml
|
157
158
|
- generators/surveyor/templates/locales/surveyor_he.yml
|
158
159
|
- generators/surveyor/templates/migrate/add_correct_answer_id_to_questions.rb
|
159
160
|
- generators/surveyor/templates/migrate/add_display_order_to_surveys.rb
|