rest_in_place_bootstrap_slider 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +58 -0
- data/Rakefile +1 -0
- data/TestApp/.gitignore +16 -0
- data/TestApp/.ruby-version +1 -0
- data/TestApp/Gemfile +51 -0
- data/TestApp/README.rdoc +28 -0
- data/TestApp/Rakefile +6 -0
- data/TestApp/app/assets/images/.keep +0 -0
- data/TestApp/app/assets/javascripts/application.js +18 -0
- data/TestApp/app/assets/javascripts/users.js.coffee +3 -0
- data/TestApp/app/assets/stylesheets/application.css +15 -0
- data/TestApp/app/assets/stylesheets/scaffolds.css.scss +69 -0
- data/TestApp/app/assets/stylesheets/users.css.scss +3 -0
- data/TestApp/app/controllers/application_controller.rb +5 -0
- data/TestApp/app/controllers/concerns/.keep +0 -0
- data/TestApp/app/controllers/users_controller.rb +74 -0
- data/TestApp/app/helpers/application_helper.rb +2 -0
- data/TestApp/app/helpers/users_helper.rb +2 -0
- data/TestApp/app/mailers/.keep +0 -0
- data/TestApp/app/models/.keep +0 -0
- data/TestApp/app/models/concerns/.keep +0 -0
- data/TestApp/app/models/user.rb +2 -0
- data/TestApp/app/views/layouts/application.html.erb +14 -0
- data/TestApp/app/views/users/_form.html.erb +25 -0
- data/TestApp/app/views/users/edit.html.erb +6 -0
- data/TestApp/app/views/users/index.html.erb +29 -0
- data/TestApp/app/views/users/index.json.jbuilder +4 -0
- data/TestApp/app/views/users/new.html.erb +5 -0
- data/TestApp/app/views/users/show.html.erb +30 -0
- data/TestApp/app/views/users/show.json.jbuilder +1 -0
- data/TestApp/bin/bundle +3 -0
- data/TestApp/bin/rails +4 -0
- data/TestApp/bin/rake +4 -0
- data/TestApp/config.ru +4 -0
- data/TestApp/config/application.rb +23 -0
- data/TestApp/config/boot.rb +4 -0
- data/TestApp/config/database.yml +25 -0
- data/TestApp/config/environment.rb +5 -0
- data/TestApp/config/environments/development.rb +29 -0
- data/TestApp/config/environments/production.rb +80 -0
- data/TestApp/config/environments/test.rb +36 -0
- data/TestApp/config/initializers/backtrace_silencers.rb +7 -0
- data/TestApp/config/initializers/filter_parameter_logging.rb +4 -0
- data/TestApp/config/initializers/inflections.rb +16 -0
- data/TestApp/config/initializers/mime_types.rb +5 -0
- data/TestApp/config/initializers/secret_token.rb +12 -0
- data/TestApp/config/initializers/session_store.rb +3 -0
- data/TestApp/config/initializers/wrap_parameters.rb +14 -0
- data/TestApp/config/locales/en.yml +23 -0
- data/TestApp/config/routes.rb +58 -0
- data/TestApp/db/migrate/20140124064041_create_users.rb +10 -0
- data/TestApp/db/schema.rb +23 -0
- data/TestApp/db/seeds.rb +7 -0
- data/TestApp/lib/assets/.keep +0 -0
- data/TestApp/lib/tasks/.keep +0 -0
- data/TestApp/log/.keep +0 -0
- data/TestApp/public/404.html +58 -0
- data/TestApp/public/422.html +58 -0
- data/TestApp/public/500.html +57 -0
- data/TestApp/public/favicon.ico +0 -0
- data/TestApp/public/robots.txt +5 -0
- data/TestApp/test/controllers/.keep +0 -0
- data/TestApp/test/controllers/users_controller_test.rb +49 -0
- data/TestApp/test/fixtures/.keep +0 -0
- data/TestApp/test/fixtures/users.yml +9 -0
- data/TestApp/test/helpers/.keep +0 -0
- data/TestApp/test/helpers/users_helper_test.rb +4 -0
- data/TestApp/test/integration/.keep +0 -0
- data/TestApp/test/mailers/.keep +0 -0
- data/TestApp/test/models/.keep +0 -0
- data/TestApp/test/models/user_test.rb +7 -0
- data/TestApp/test/test_helper.rb +15 -0
- data/TestApp/vendor/assets/javascripts/.keep +0 -0
- data/TestApp/vendor/assets/stylesheets/.keep +0 -0
- data/lib/assets/javascripts/rest_in_place_bootstrap_slider/index.js.coffee +3 -0
- data/lib/assets/javascripts/rest_in_place_bootstrap_slider/rest_in_place_bootstrap_slider.js.coffee +51 -0
- data/lib/assets/stylesheets/rest_in_place_bootstrap_slider/index.css.scss +3 -0
- data/lib/rest_in_place_bootstrap_slider.rb +8 -0
- data/lib/rest_in_place_bootstrap_slider/version.rb +3 -0
- data/rest_in_place_bootstrap_slider.gemspec +27 -0
- metadata +197 -0
@@ -0,0 +1,23 @@
|
|
1
|
+
# Files in the config/locales directory are used for internationalization
|
2
|
+
# and are automatically loaded by Rails. If you want to use locales other
|
3
|
+
# than English, add the necessary files in this directory.
|
4
|
+
#
|
5
|
+
# To use the locales, use `I18n.t`:
|
6
|
+
#
|
7
|
+
# I18n.t 'hello'
|
8
|
+
#
|
9
|
+
# In views, this is aliased to just `t`:
|
10
|
+
#
|
11
|
+
# <%= t('hello') %>
|
12
|
+
#
|
13
|
+
# To use a different locale, set it with `I18n.locale`:
|
14
|
+
#
|
15
|
+
# I18n.locale = :es
|
16
|
+
#
|
17
|
+
# This would use the information in config/locales/es.yml.
|
18
|
+
#
|
19
|
+
# To learn more, please read the Rails Internationalization guide
|
20
|
+
# available at http://guides.rubyonrails.org/i18n.html.
|
21
|
+
|
22
|
+
en:
|
23
|
+
hello: "Hello world"
|
@@ -0,0 +1,58 @@
|
|
1
|
+
TestApp::Application.routes.draw do
|
2
|
+
resources :users
|
3
|
+
|
4
|
+
# The priority is based upon order of creation: first created -> highest priority.
|
5
|
+
# See how all your routes lay out with "rake routes".
|
6
|
+
|
7
|
+
# You can have the root of your site routed with "root"
|
8
|
+
# root 'welcome#index'
|
9
|
+
|
10
|
+
# Example of regular route:
|
11
|
+
# get 'products/:id' => 'catalog#view'
|
12
|
+
|
13
|
+
# Example of named route that can be invoked with purchase_url(id: product.id)
|
14
|
+
# get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
|
15
|
+
|
16
|
+
# Example resource route (maps HTTP verbs to controller actions automatically):
|
17
|
+
# resources :products
|
18
|
+
|
19
|
+
# Example resource route with options:
|
20
|
+
# resources :products do
|
21
|
+
# member do
|
22
|
+
# get 'short'
|
23
|
+
# post 'toggle'
|
24
|
+
# end
|
25
|
+
#
|
26
|
+
# collection do
|
27
|
+
# get 'sold'
|
28
|
+
# end
|
29
|
+
# end
|
30
|
+
|
31
|
+
# Example resource route with sub-resources:
|
32
|
+
# resources :products do
|
33
|
+
# resources :comments, :sales
|
34
|
+
# resource :seller
|
35
|
+
# end
|
36
|
+
|
37
|
+
# Example resource route with more complex sub-resources:
|
38
|
+
# resources :products do
|
39
|
+
# resources :comments
|
40
|
+
# resources :sales do
|
41
|
+
# get 'recent', on: :collection
|
42
|
+
# end
|
43
|
+
# end
|
44
|
+
|
45
|
+
# Example resource route with concerns:
|
46
|
+
# concern :toggleable do
|
47
|
+
# post 'toggle'
|
48
|
+
# end
|
49
|
+
# resources :posts, concerns: :toggleable
|
50
|
+
# resources :photos, concerns: :toggleable
|
51
|
+
|
52
|
+
# Example resource route within a namespace:
|
53
|
+
# namespace :admin do
|
54
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
55
|
+
# # (app/controllers/admin/products_controller.rb)
|
56
|
+
# resources :products
|
57
|
+
# end
|
58
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended that you check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(version: 20140124064041) do
|
15
|
+
|
16
|
+
create_table "users", force: true do |t|
|
17
|
+
t.string "name"
|
18
|
+
t.integer "age"
|
19
|
+
t.datetime "created_at"
|
20
|
+
t.datetime "updated_at"
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
data/TestApp/db/seeds.rb
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
# This file should contain all the record creation needed to seed the database with its default values.
|
2
|
+
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
|
3
|
+
#
|
4
|
+
# Examples:
|
5
|
+
#
|
6
|
+
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
|
7
|
+
# Mayor.create(name: 'Emanuel', city: cities.first)
|
File without changes
|
File without changes
|
data/TestApp/log/.keep
ADDED
File without changes
|
@@ -0,0 +1,58 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<style>
|
6
|
+
body {
|
7
|
+
background-color: #EFEFEF;
|
8
|
+
color: #2E2F30;
|
9
|
+
text-align: center;
|
10
|
+
font-family: arial, sans-serif;
|
11
|
+
}
|
12
|
+
|
13
|
+
div.dialog {
|
14
|
+
width: 25em;
|
15
|
+
margin: 4em auto 0 auto;
|
16
|
+
border: 1px solid #CCC;
|
17
|
+
border-right-color: #999;
|
18
|
+
border-left-color: #999;
|
19
|
+
border-bottom-color: #BBB;
|
20
|
+
border-top: #B00100 solid 4px;
|
21
|
+
border-top-left-radius: 9px;
|
22
|
+
border-top-right-radius: 9px;
|
23
|
+
background-color: white;
|
24
|
+
padding: 7px 4em 0 4em;
|
25
|
+
}
|
26
|
+
|
27
|
+
h1 {
|
28
|
+
font-size: 100%;
|
29
|
+
color: #730E15;
|
30
|
+
line-height: 1.5em;
|
31
|
+
}
|
32
|
+
|
33
|
+
body > p {
|
34
|
+
width: 33em;
|
35
|
+
margin: 0 auto 1em;
|
36
|
+
padding: 1em 0;
|
37
|
+
background-color: #F7F7F7;
|
38
|
+
border: 1px solid #CCC;
|
39
|
+
border-right-color: #999;
|
40
|
+
border-bottom-color: #999;
|
41
|
+
border-bottom-left-radius: 4px;
|
42
|
+
border-bottom-right-radius: 4px;
|
43
|
+
border-top-color: #DADADA;
|
44
|
+
color: #666;
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
46
|
+
}
|
47
|
+
</style>
|
48
|
+
</head>
|
49
|
+
|
50
|
+
<body>
|
51
|
+
<!-- This file lives in public/404.html -->
|
52
|
+
<div class="dialog">
|
53
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
54
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
55
|
+
</div>
|
56
|
+
<p>If you are the application owner check the logs for more information.</p>
|
57
|
+
</body>
|
58
|
+
</html>
|
@@ -0,0 +1,58 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<style>
|
6
|
+
body {
|
7
|
+
background-color: #EFEFEF;
|
8
|
+
color: #2E2F30;
|
9
|
+
text-align: center;
|
10
|
+
font-family: arial, sans-serif;
|
11
|
+
}
|
12
|
+
|
13
|
+
div.dialog {
|
14
|
+
width: 25em;
|
15
|
+
margin: 4em auto 0 auto;
|
16
|
+
border: 1px solid #CCC;
|
17
|
+
border-right-color: #999;
|
18
|
+
border-left-color: #999;
|
19
|
+
border-bottom-color: #BBB;
|
20
|
+
border-top: #B00100 solid 4px;
|
21
|
+
border-top-left-radius: 9px;
|
22
|
+
border-top-right-radius: 9px;
|
23
|
+
background-color: white;
|
24
|
+
padding: 7px 4em 0 4em;
|
25
|
+
}
|
26
|
+
|
27
|
+
h1 {
|
28
|
+
font-size: 100%;
|
29
|
+
color: #730E15;
|
30
|
+
line-height: 1.5em;
|
31
|
+
}
|
32
|
+
|
33
|
+
body > p {
|
34
|
+
width: 33em;
|
35
|
+
margin: 0 auto 1em;
|
36
|
+
padding: 1em 0;
|
37
|
+
background-color: #F7F7F7;
|
38
|
+
border: 1px solid #CCC;
|
39
|
+
border-right-color: #999;
|
40
|
+
border-bottom-color: #999;
|
41
|
+
border-bottom-left-radius: 4px;
|
42
|
+
border-bottom-right-radius: 4px;
|
43
|
+
border-top-color: #DADADA;
|
44
|
+
color: #666;
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
46
|
+
}
|
47
|
+
</style>
|
48
|
+
</head>
|
49
|
+
|
50
|
+
<body>
|
51
|
+
<!-- This file lives in public/422.html -->
|
52
|
+
<div class="dialog">
|
53
|
+
<h1>The change you wanted was rejected.</h1>
|
54
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
55
|
+
</div>
|
56
|
+
<p>If you are the application owner check the logs for more information.</p>
|
57
|
+
</body>
|
58
|
+
</html>
|
@@ -0,0 +1,57 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<style>
|
6
|
+
body {
|
7
|
+
background-color: #EFEFEF;
|
8
|
+
color: #2E2F30;
|
9
|
+
text-align: center;
|
10
|
+
font-family: arial, sans-serif;
|
11
|
+
}
|
12
|
+
|
13
|
+
div.dialog {
|
14
|
+
width: 25em;
|
15
|
+
margin: 4em auto 0 auto;
|
16
|
+
border: 1px solid #CCC;
|
17
|
+
border-right-color: #999;
|
18
|
+
border-left-color: #999;
|
19
|
+
border-bottom-color: #BBB;
|
20
|
+
border-top: #B00100 solid 4px;
|
21
|
+
border-top-left-radius: 9px;
|
22
|
+
border-top-right-radius: 9px;
|
23
|
+
background-color: white;
|
24
|
+
padding: 7px 4em 0 4em;
|
25
|
+
}
|
26
|
+
|
27
|
+
h1 {
|
28
|
+
font-size: 100%;
|
29
|
+
color: #730E15;
|
30
|
+
line-height: 1.5em;
|
31
|
+
}
|
32
|
+
|
33
|
+
body > p {
|
34
|
+
width: 33em;
|
35
|
+
margin: 0 auto 1em;
|
36
|
+
padding: 1em 0;
|
37
|
+
background-color: #F7F7F7;
|
38
|
+
border: 1px solid #CCC;
|
39
|
+
border-right-color: #999;
|
40
|
+
border-bottom-color: #999;
|
41
|
+
border-bottom-left-radius: 4px;
|
42
|
+
border-bottom-right-radius: 4px;
|
43
|
+
border-top-color: #DADADA;
|
44
|
+
color: #666;
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
46
|
+
}
|
47
|
+
</style>
|
48
|
+
</head>
|
49
|
+
|
50
|
+
<body>
|
51
|
+
<!-- This file lives in public/500.html -->
|
52
|
+
<div class="dialog">
|
53
|
+
<h1>We're sorry, but something went wrong.</h1>
|
54
|
+
</div>
|
55
|
+
<p>If you are the application owner check the logs for more information.</p>
|
56
|
+
</body>
|
57
|
+
</html>
|
File without changes
|
File without changes
|
@@ -0,0 +1,49 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class UsersControllerTest < ActionController::TestCase
|
4
|
+
setup do
|
5
|
+
@user = users(:one)
|
6
|
+
end
|
7
|
+
|
8
|
+
test "should get index" do
|
9
|
+
get :index
|
10
|
+
assert_response :success
|
11
|
+
assert_not_nil assigns(:users)
|
12
|
+
end
|
13
|
+
|
14
|
+
test "should get new" do
|
15
|
+
get :new
|
16
|
+
assert_response :success
|
17
|
+
end
|
18
|
+
|
19
|
+
test "should create user" do
|
20
|
+
assert_difference('User.count') do
|
21
|
+
post :create, user: { age: @user.age, name: @user.name }
|
22
|
+
end
|
23
|
+
|
24
|
+
assert_redirected_to user_path(assigns(:user))
|
25
|
+
end
|
26
|
+
|
27
|
+
test "should show user" do
|
28
|
+
get :show, id: @user
|
29
|
+
assert_response :success
|
30
|
+
end
|
31
|
+
|
32
|
+
test "should get edit" do
|
33
|
+
get :edit, id: @user
|
34
|
+
assert_response :success
|
35
|
+
end
|
36
|
+
|
37
|
+
test "should update user" do
|
38
|
+
patch :update, id: @user, user: { age: @user.age, name: @user.name }
|
39
|
+
assert_redirected_to user_path(assigns(:user))
|
40
|
+
end
|
41
|
+
|
42
|
+
test "should destroy user" do
|
43
|
+
assert_difference('User.count', -1) do
|
44
|
+
delete :destroy, id: @user
|
45
|
+
end
|
46
|
+
|
47
|
+
assert_redirected_to users_path
|
48
|
+
end
|
49
|
+
end
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,15 @@
|
|
1
|
+
ENV["RAILS_ENV"] ||= "test"
|
2
|
+
require File.expand_path('../../config/environment', __FILE__)
|
3
|
+
require 'rails/test_help'
|
4
|
+
|
5
|
+
class ActiveSupport::TestCase
|
6
|
+
ActiveRecord::Migration.check_pending!
|
7
|
+
|
8
|
+
# Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
|
9
|
+
#
|
10
|
+
# Note: You'll currently still have to declare fixtures explicitly in integration tests
|
11
|
+
# -- they do not yet inherit this setting
|
12
|
+
fixtures :all
|
13
|
+
|
14
|
+
# Add more helper methods to be used by all tests here...
|
15
|
+
end
|
File without changes
|
File without changes
|
data/lib/assets/javascripts/rest_in_place_bootstrap_slider/rest_in_place_bootstrap_slider.js.coffee
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
# <div class='rest-in-place-slider'>
|
2
|
+
# <span class='rest-in-place' data-attribute='myField' ...>
|
3
|
+
# <input class='slider' ...
|
4
|
+
# </div>
|
5
|
+
class RestInPlaceSlider
|
6
|
+
constructor : (el) ->
|
7
|
+
@$element = $(el)
|
8
|
+
@createTextInput()
|
9
|
+
@createTextInputUpdatedHandler()
|
10
|
+
@bindTextInput()
|
11
|
+
@createSliderInput()
|
12
|
+
@createSliderInputUpdatedHandler()
|
13
|
+
@bindSliderInput()
|
14
|
+
|
15
|
+
createTextInput: () ->
|
16
|
+
@$textInput = @$element.find('.rest-in-place')
|
17
|
+
unless @$textInput.length
|
18
|
+
throw 'RestInPlaceSlider .rest-in-place not found'
|
19
|
+
|
20
|
+
createSliderInput : () ->
|
21
|
+
@$sliderInput = @$element.find('.slider')
|
22
|
+
unless @$sliderInput.length
|
23
|
+
throw 'RestInPlaceSlider .slider not found'
|
24
|
+
|
25
|
+
bindSliderInput : () ->
|
26
|
+
@$sliderInput
|
27
|
+
.slider()
|
28
|
+
.on('slide', @sliderInputUpdatedHandler)
|
29
|
+
|
30
|
+
bindTextInput : () ->
|
31
|
+
@$textInput.bind('success.rest-in-place', @textInputUpdatedHandler)
|
32
|
+
|
33
|
+
createTextInputUpdatedHandler : () ->
|
34
|
+
@textInputUpdatedHandler = (e, data) =>
|
35
|
+
value = @restInPlaceEditor().extractAttributeFromData(data)
|
36
|
+
@$sliderInput.slider('setValue', value)
|
37
|
+
|
38
|
+
createSliderInputUpdatedHandler: () ->
|
39
|
+
@sliderInputUpdatedHandler = (e) =>
|
40
|
+
value = e.value
|
41
|
+
@$textInput.html(value)
|
42
|
+
@restInPlaceEditor().activate()
|
43
|
+
@restInPlaceEditor().update()
|
44
|
+
|
45
|
+
restInPlaceEditor: () ->
|
46
|
+
@$textInput.data('restInPlaceEditor')
|
47
|
+
|
48
|
+
$ ->
|
49
|
+
$('.rest-in-place-slider').each ->
|
50
|
+
new RestInPlaceSlider(@)
|
51
|
+
|