ios-checkboxes 0.1.0 → 0.1.2

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.
Files changed (79) hide show
  1. data/.gitignore +12 -6
  2. data/Gemfile +21 -0
  3. data/HISTORY.md +10 -0
  4. data/README.md +136 -0
  5. data/Rakefile +36 -21
  6. data/build/.gitignore +2 -0
  7. data/build/build.sh +7 -0
  8. data/build/output/assets/ios-checkboxes/ios-checkboxes-5d38e09413b47993266b4343b181d2f9.css +1 -0
  9. data/build/output/assets/ios-checkboxes/ios-checkboxes-767fc292f6a04316d3a54b18f4637b57.js +1 -0
  10. data/{vendor/assets/images/ios-style-checkboxes/off.png → build/output/assets/ios-checkboxes/off-32586c60c5c48b7002326fdff55cd42e.png} +0 -0
  11. data/{vendor/assets/images/ios-style-checkboxes/on.png → build/output/assets/ios-checkboxes/on-c1710e0553b5cb2ba6b41a59ace60662.png} +0 -0
  12. data/{vendor/assets/images/ios-style-checkboxes/slider.png → build/output/assets/ios-checkboxes/slider-a8cd833485793750ee72350ac5adb4d4.png} +0 -0
  13. data/{vendor/assets/images/ios-style-checkboxes/slider_center.png → build/output/assets/ios-checkboxes/slider_center-137b6fa2802dc0a9be192b66c5a76815.png} +0 -0
  14. data/{vendor/assets/images/ios-style-checkboxes/slider_left.png → build/output/assets/ios-checkboxes/slider_left-e6930b387dd9c0a424e7c1aedd0b0aea.png} +0 -0
  15. data/{vendor/assets/images/ios-style-checkboxes/slider_right.png → build/output/assets/ios-checkboxes/slider_right-e8654b2a69377361211e57422446c703.png} +0 -0
  16. data/ios-checkboxes.gemspec +18 -12
  17. data/{vendor/assets/images/iphone-style-checkboxes → lib/assets/images/ios-checkboxes}/off.png +0 -0
  18. data/{vendor/assets/images/iphone-style-checkboxes → lib/assets/images/ios-checkboxes}/on.png +0 -0
  19. data/{vendor/assets/images/iphone-style-checkboxes → lib/assets/images/ios-checkboxes}/slider.png +0 -0
  20. data/{vendor/assets/images/iphone-style-checkboxes → lib/assets/images/ios-checkboxes}/slider_center.png +0 -0
  21. data/{vendor/assets/images/iphone-style-checkboxes → lib/assets/images/ios-checkboxes}/slider_left.png +0 -0
  22. data/{vendor/assets/images/iphone-style-checkboxes → lib/assets/images/ios-checkboxes}/slider_right.png +0 -0
  23. data/lib/assets/javascripts/ios-checkboxes.js.coffee +2 -0
  24. data/lib/assets/javascripts/ios-checkboxes/ios-checkboxes.js.coffee +269 -0
  25. data/lib/assets/stylesheets/ios-checkboxes.css.sass +3 -0
  26. data/lib/assets/stylesheets/ios-checkboxes/_mixins.sass +104 -0
  27. data/lib/assets/stylesheets/ios-checkboxes/ios-checkboxes.css.sass +3 -0
  28. data/lib/ios-checkboxes.rb +5 -5
  29. data/lib/ios-checkboxes/engine.rb +4 -0
  30. data/lib/ios-checkboxes/railtie.rb +10 -0
  31. data/lib/ios-checkboxes/version.rb +2 -2
  32. data/lib/ios-style-checkboxes/off.png +0 -0
  33. data/lib/ios-style-checkboxes/on.png +0 -0
  34. data/lib/ios-style-checkboxes/slider.png +0 -0
  35. data/lib/ios-style-checkboxes/slider_center.png +0 -0
  36. data/lib/ios-style-checkboxes/slider_left.png +0 -0
  37. data/lib/ios-style-checkboxes/slider_right.png +0 -0
  38. data/lib/tasks/ios-checkboxes_tasks.rake +4 -0
  39. data/spec/dummy/Rakefile +7 -0
  40. data/spec/dummy/app/assets/javascripts/application.js +9 -0
  41. data/spec/dummy/app/assets/stylesheets/application.css +7 -0
  42. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  43. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  44. data/spec/dummy/app/mailers/.gitkeep +0 -0
  45. data/spec/dummy/app/models/.gitkeep +0 -0
  46. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  47. data/spec/dummy/config.ru +4 -0
  48. data/spec/dummy/config/application.rb +57 -0
  49. data/spec/dummy/config/boot.rb +10 -0
  50. data/spec/dummy/config/database.yml +25 -0
  51. data/spec/dummy/config/environment.rb +5 -0
  52. data/spec/dummy/config/environments/development.rb +30 -0
  53. data/spec/dummy/config/environments/production.rb +60 -0
  54. data/spec/dummy/config/environments/test.rb +39 -0
  55. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  56. data/spec/dummy/config/initializers/inflections.rb +10 -0
  57. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  58. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  59. data/spec/dummy/config/initializers/session_store.rb +8 -0
  60. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  61. data/spec/dummy/config/locales/en.yml +5 -0
  62. data/spec/dummy/config/routes.rb +58 -0
  63. data/spec/dummy/lib/assets/.gitkeep +0 -0
  64. data/spec/dummy/log/.gitkeep +0 -0
  65. data/spec/dummy/public/404.html +26 -0
  66. data/spec/dummy/public/422.html +26 -0
  67. data/spec/dummy/public/500.html +26 -0
  68. data/spec/dummy/public/favicon.ico +0 -0
  69. data/spec/dummy/script/rails +6 -0
  70. data/spec/ios-checkboxes_spec.rb +13 -0
  71. data/spec/javascripts/ios-checkboxes_spec.js.coffee +36 -0
  72. data/spec/javascripts/spec.css +4 -0
  73. data/spec/javascripts/spec.js.coffee +2 -0
  74. data/spec/javascripts/support/custom-theme.css.sass +7 -0
  75. data/spec/spec_helper.rb +10 -0
  76. data/spec/support/asset_matchers.rb +37 -0
  77. metadata +171 -28
  78. data/vendor/assets/javascripts/ios-checkboxes.js +0 -283
  79. data/vendor/assets/stylesheets/ios-checkboxes.css.erb +0 -147
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = '445dd15337325e92d38250d785ed40a8a673445af043599cb76d88852030b8378d5c79b7b39d68e5b2486ed80ae26f6ec2deb58b6fa467654a33097eee3fefd5'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,58 @@
1
+ Dummy::Application.routes.draw do
2
+ # The priority is based upon order of creation:
3
+ # first created -> highest priority.
4
+
5
+ # Sample of regular route:
6
+ # match 'products/:id' => 'catalog#view'
7
+ # Keep in mind you can assign values other than :controller and :action
8
+
9
+ # Sample of named route:
10
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
11
+ # This route can be invoked with purchase_url(:id => product.id)
12
+
13
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
14
+ # resources :products
15
+
16
+ # Sample resource route with options:
17
+ # resources :products do
18
+ # member do
19
+ # get 'short'
20
+ # post 'toggle'
21
+ # end
22
+ #
23
+ # collection do
24
+ # get 'sold'
25
+ # end
26
+ # end
27
+
28
+ # Sample resource route with sub-resources:
29
+ # resources :products do
30
+ # resources :comments, :sales
31
+ # resource :seller
32
+ # end
33
+
34
+ # Sample resource route with more complex sub-resources
35
+ # resources :products do
36
+ # resources :comments
37
+ # resources :sales do
38
+ # get 'recent', :on => :collection
39
+ # end
40
+ # end
41
+
42
+ # Sample resource route within a namespace:
43
+ # namespace :admin do
44
+ # # Directs /admin/products/* to Admin::ProductsController
45
+ # # (app/controllers/admin/products_controller.rb)
46
+ # resources :products
47
+ # end
48
+
49
+ # You can have the root of your site routed with "root"
50
+ # just remember to delete public/index.html.
51
+ # root :to => 'welcome#index'
52
+
53
+ # See how all your routes lay out with "rake routes"
54
+
55
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
56
+ # Note: This route will make all actions in every controller accessible via GET requests.
57
+ # match ':controller(/:action(/:id(.:format)))'
58
+ end
File without changes
File without changes
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ <p>We've been notified about this issue and we'll take a look at it shortly.</p>
24
+ </div>
25
+ </body>
26
+ </html>
File without changes
@@ -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'
@@ -0,0 +1,13 @@
1
+ require 'spec_helper'
2
+
3
+ describe "iOS Checkboxes assets" do
4
+
5
+ subject { ::Rails.application.assets }
6
+
7
+ it { should serve "ios-checkboxes.js" }
8
+ it { should serve "ios-checkboxes.css" }
9
+
10
+ %w{on off slider slider_center slider_left slider_right}.each do |image_name|
11
+ it { should serve "ios-checkboxes/#{image_name}.png" }
12
+ end
13
+ end
@@ -0,0 +1,36 @@
1
+ #= require ios-checkboxes
2
+
3
+ describe "iOS Checkboxes", ->
4
+
5
+ iphonify = (rootClass='') ->
6
+ setFixtures "<div class='#{rootClass}'> <input id='box' type='checkbox' /> </div>"
7
+ check = $("#box")
8
+ check.iphoneStyle()
9
+ check.parent()
10
+
11
+
12
+ it "should have jQuery extensions", ->
13
+ expect(jQuery.fn.iphoneStyle).toBeTruthy()
14
+
15
+ it "should apply css classes to the on/off button", ->
16
+ wrap = iphonify()
17
+ expect(wrap).toBe ".iPhoneCheckContainer"
18
+
19
+ it "should apply styles for the checkboxes from the CSS", ->
20
+ wrap = iphonify()
21
+ # Make sure some basic CSS has been applied.
22
+ # It's a basic test to make sure the CSS is actually loaded
23
+ expect(wrap.css 'height') .toBe '27px'
24
+ expect(wrap.css 'position') .toBe 'relative'
25
+ expect(wrap.css 'cursor') .toBe 'pointer'
26
+ expect(wrap.find('.iPhoneCheckHandle').css 'background-image').toMatch /ios-checkboxes/
27
+
28
+ it "should allow customizing the styles", ->
29
+ wrap = iphonify('custom')
30
+ label = wrap.find('label')
31
+ handle = wrap.find('.iPhoneCheckHandle')
32
+ expect(wrap.css 'height') .toBe '33px'
33
+ expect(label.css 'height') .toBe '33px'
34
+ expect(label.css 'line-height') .toBe '30px'
35
+ expect(label.css 'font-size') .toBe '30px'
36
+ expect(handle.css 'background-image') .toMatch /custom-path/
@@ -0,0 +1,4 @@
1
+ /*
2
+ * =require ios-checkboxes
3
+ * =require_tree ./support
4
+ */
@@ -0,0 +1,2 @@
1
+ #=require jquery
2
+ #=require_tree ./
@@ -0,0 +1,7 @@
1
+ @import "./ios-checkboxes/mixins"
2
+ .custom
3
+ $iphone-style-height: 33px
4
+ $iphone-style-font-size: 30px
5
+ $iphone-style-images-path: 'custom-path'
6
+ +iphone-style
7
+
@@ -0,0 +1,10 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
@@ -0,0 +1,37 @@
1
+
2
+ RSpec::Matchers.define :serve do |asset_name|
3
+ match do |sprockets|
4
+ !!sprockets[asset_name]
5
+ end
6
+
7
+ failure_message_for_should do |sprockets|
8
+ "expected #{asset_name} to be served, but it wasn't"
9
+ end
10
+
11
+ failure_message_for_should_not do |sprockets|
12
+ "expected #{asset_name} NOT to be served, but it was"
13
+ end
14
+
15
+ description do
16
+ "serve #{asset_name}"
17
+ end
18
+ end
19
+
20
+ RSpec::Matchers.define :contain do |content|
21
+ match do |asset|
22
+ asset.to_s.include? content
23
+ end
24
+
25
+ failure_message_for_should do |asset|
26
+ "expected #{asset.logical_path} to contain #{content}"
27
+ end
28
+
29
+ failure_message_for_should_not do |asset|
30
+ "expected #{asset.logical_path} to NOT contain #{content}"
31
+ end
32
+
33
+ description do
34
+ "contain '#{content}'"
35
+ end
36
+ end
37
+
metadata CHANGED
@@ -1,54 +1,145 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ios-checkboxes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
8
- - Thomas Reynolds
8
+ - Dmytrii Nagirniak, Thomas Reynolds
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-11-13 00:00:00.000000000Z
12
+ date: 2011-11-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
- name: railties
16
- requirement: &70318773319200 !ruby/object:Gem::Requirement
15
+ name: rails
16
+ requirement: &70120413960860 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
20
20
  - !ruby/object:Gem::Version
21
- version: '3.1'
21
+ version: 3.1.2
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70318773319200
25
- description: iOS-style Checkboxes for Rails asset pipeline.
24
+ version_requirements: *70120413960860
25
+ - !ruby/object:Gem::Dependency
26
+ name: sass-rails
27
+ requirement: &70120413960400 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: *70120413960400
36
+ - !ruby/object:Gem::Dependency
37
+ name: compass
38
+ requirement: &70120413959720 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ! '>='
42
+ - !ruby/object:Gem::Version
43
+ version: 0.12.alpha.1
44
+ type: :runtime
45
+ prerelease: false
46
+ version_requirements: *70120413959720
47
+ - !ruby/object:Gem::Dependency
48
+ name: rspec-rails
49
+ requirement: &70120413959240 !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ type: :development
56
+ prerelease: false
57
+ version_requirements: *70120413959240
58
+ description: Easily convert your checkboxes into iPhone style On/Off buttons. Use
59
+ with Rails 3.1 Assets Pipeline.
26
60
  email:
27
- - me@tdreyno.com
61
+ - dnagir@gmail.com
28
62
  executables: []
29
63
  extensions: []
30
64
  extra_rdoc_files: []
31
65
  files:
32
66
  - .gitignore
67
+ - Gemfile
68
+ - HISTORY.md
69
+ - README.md
33
70
  - Rakefile
71
+ - build/.gitignore
72
+ - build/build.sh
73
+ - build/output/assets/ios-checkboxes/ios-checkboxes-5d38e09413b47993266b4343b181d2f9.css
74
+ - build/output/assets/ios-checkboxes/ios-checkboxes-767fc292f6a04316d3a54b18f4637b57.js
75
+ - build/output/assets/ios-checkboxes/off-32586c60c5c48b7002326fdff55cd42e.png
76
+ - build/output/assets/ios-checkboxes/on-c1710e0553b5cb2ba6b41a59ace60662.png
77
+ - build/output/assets/ios-checkboxes/slider-a8cd833485793750ee72350ac5adb4d4.png
78
+ - build/output/assets/ios-checkboxes/slider_center-137b6fa2802dc0a9be192b66c5a76815.png
79
+ - build/output/assets/ios-checkboxes/slider_left-e6930b387dd9c0a424e7c1aedd0b0aea.png
80
+ - build/output/assets/ios-checkboxes/slider_right-e8654b2a69377361211e57422446c703.png
34
81
  - ios-checkboxes.gemspec
82
+ - lib/assets/images/ios-checkboxes/off.png
83
+ - lib/assets/images/ios-checkboxes/on.png
84
+ - lib/assets/images/ios-checkboxes/slider.png
85
+ - lib/assets/images/ios-checkboxes/slider_center.png
86
+ - lib/assets/images/ios-checkboxes/slider_left.png
87
+ - lib/assets/images/ios-checkboxes/slider_right.png
88
+ - lib/assets/javascripts/ios-checkboxes.js.coffee
89
+ - lib/assets/javascripts/ios-checkboxes/ios-checkboxes.js.coffee
90
+ - lib/assets/stylesheets/ios-checkboxes.css.sass
91
+ - lib/assets/stylesheets/ios-checkboxes/_mixins.sass
92
+ - lib/assets/stylesheets/ios-checkboxes/ios-checkboxes.css.sass
35
93
  - lib/ios-checkboxes.rb
94
+ - lib/ios-checkboxes/engine.rb
95
+ - lib/ios-checkboxes/railtie.rb
36
96
  - lib/ios-checkboxes/version.rb
37
- - vendor/assets/images/ios-style-checkboxes/off.png
38
- - vendor/assets/images/ios-style-checkboxes/on.png
39
- - vendor/assets/images/ios-style-checkboxes/slider.png
40
- - vendor/assets/images/ios-style-checkboxes/slider_center.png
41
- - vendor/assets/images/ios-style-checkboxes/slider_left.png
42
- - vendor/assets/images/ios-style-checkboxes/slider_right.png
43
- - vendor/assets/images/iphone-style-checkboxes/off.png
44
- - vendor/assets/images/iphone-style-checkboxes/on.png
45
- - vendor/assets/images/iphone-style-checkboxes/slider.png
46
- - vendor/assets/images/iphone-style-checkboxes/slider_center.png
47
- - vendor/assets/images/iphone-style-checkboxes/slider_left.png
48
- - vendor/assets/images/iphone-style-checkboxes/slider_right.png
49
- - vendor/assets/javascripts/ios-checkboxes.js
50
- - vendor/assets/stylesheets/ios-checkboxes.css.erb
51
- homepage: https://github.com/tdreyno/iphone-style-checkboxes
97
+ - lib/ios-style-checkboxes/off.png
98
+ - lib/ios-style-checkboxes/on.png
99
+ - lib/ios-style-checkboxes/slider.png
100
+ - lib/ios-style-checkboxes/slider_center.png
101
+ - lib/ios-style-checkboxes/slider_left.png
102
+ - lib/ios-style-checkboxes/slider_right.png
103
+ - lib/tasks/ios-checkboxes_tasks.rake
104
+ - spec/dummy/Rakefile
105
+ - spec/dummy/app/assets/javascripts/application.js
106
+ - spec/dummy/app/assets/stylesheets/application.css
107
+ - spec/dummy/app/controllers/application_controller.rb
108
+ - spec/dummy/app/helpers/application_helper.rb
109
+ - spec/dummy/app/mailers/.gitkeep
110
+ - spec/dummy/app/models/.gitkeep
111
+ - spec/dummy/app/views/layouts/application.html.erb
112
+ - spec/dummy/config.ru
113
+ - spec/dummy/config/application.rb
114
+ - spec/dummy/config/boot.rb
115
+ - spec/dummy/config/database.yml
116
+ - spec/dummy/config/environment.rb
117
+ - spec/dummy/config/environments/development.rb
118
+ - spec/dummy/config/environments/production.rb
119
+ - spec/dummy/config/environments/test.rb
120
+ - spec/dummy/config/initializers/backtrace_silencers.rb
121
+ - spec/dummy/config/initializers/inflections.rb
122
+ - spec/dummy/config/initializers/mime_types.rb
123
+ - spec/dummy/config/initializers/secret_token.rb
124
+ - spec/dummy/config/initializers/session_store.rb
125
+ - spec/dummy/config/initializers/wrap_parameters.rb
126
+ - spec/dummy/config/locales/en.yml
127
+ - spec/dummy/config/routes.rb
128
+ - spec/dummy/lib/assets/.gitkeep
129
+ - spec/dummy/log/.gitkeep
130
+ - spec/dummy/public/404.html
131
+ - spec/dummy/public/422.html
132
+ - spec/dummy/public/500.html
133
+ - spec/dummy/public/favicon.ico
134
+ - spec/dummy/script/rails
135
+ - spec/ios-checkboxes_spec.rb
136
+ - spec/javascripts/ios-checkboxes_spec.js.coffee
137
+ - spec/javascripts/spec.css
138
+ - spec/javascripts/spec.js.coffee
139
+ - spec/javascripts/support/custom-theme.css.sass
140
+ - spec/spec_helper.rb
141
+ - spec/support/asset_matchers.rb
142
+ homepage: https://github.com/dnagir/ios-checkboxes
52
143
  licenses: []
53
144
  post_install_message:
54
145
  rdoc_options: []
@@ -60,17 +151,69 @@ required_ruby_version: !ruby/object:Gem::Requirement
60
151
  - - ! '>='
61
152
  - !ruby/object:Gem::Version
62
153
  version: '0'
154
+ segments:
155
+ - 0
156
+ hash: 4183009581992757396
63
157
  required_rubygems_version: !ruby/object:Gem::Requirement
64
158
  none: false
65
159
  requirements:
66
160
  - - ! '>='
67
161
  - !ruby/object:Gem::Version
68
162
  version: '0'
163
+ segments:
164
+ - 0
165
+ hash: 4183009581992757396
69
166
  requirements: []
70
- rubyforge_project: ios-checkboxes
167
+ rubyforge_project:
71
168
  rubygems_version: 1.8.10
72
169
  signing_key:
73
170
  specification_version: 3
74
- summary: iOS-style Checkboxes
75
- test_files: []
76
- has_rdoc:
171
+ summary: iOS checkboxes for Rails
172
+ test_files:
173
+ - build/build.sh
174
+ - build/output/assets/ios-checkboxes/ios-checkboxes-5d38e09413b47993266b4343b181d2f9.css
175
+ - build/output/assets/ios-checkboxes/ios-checkboxes-767fc292f6a04316d3a54b18f4637b57.js
176
+ - build/output/assets/ios-checkboxes/off-32586c60c5c48b7002326fdff55cd42e.png
177
+ - build/output/assets/ios-checkboxes/on-c1710e0553b5cb2ba6b41a59ace60662.png
178
+ - build/output/assets/ios-checkboxes/slider-a8cd833485793750ee72350ac5adb4d4.png
179
+ - build/output/assets/ios-checkboxes/slider_center-137b6fa2802dc0a9be192b66c5a76815.png
180
+ - build/output/assets/ios-checkboxes/slider_left-e6930b387dd9c0a424e7c1aedd0b0aea.png
181
+ - build/output/assets/ios-checkboxes/slider_right-e8654b2a69377361211e57422446c703.png
182
+ - spec/dummy/Rakefile
183
+ - spec/dummy/app/assets/javascripts/application.js
184
+ - spec/dummy/app/assets/stylesheets/application.css
185
+ - spec/dummy/app/controllers/application_controller.rb
186
+ - spec/dummy/app/helpers/application_helper.rb
187
+ - spec/dummy/app/mailers/.gitkeep
188
+ - spec/dummy/app/models/.gitkeep
189
+ - spec/dummy/app/views/layouts/application.html.erb
190
+ - spec/dummy/config.ru
191
+ - spec/dummy/config/application.rb
192
+ - spec/dummy/config/boot.rb
193
+ - spec/dummy/config/database.yml
194
+ - spec/dummy/config/environment.rb
195
+ - spec/dummy/config/environments/development.rb
196
+ - spec/dummy/config/environments/production.rb
197
+ - spec/dummy/config/environments/test.rb
198
+ - spec/dummy/config/initializers/backtrace_silencers.rb
199
+ - spec/dummy/config/initializers/inflections.rb
200
+ - spec/dummy/config/initializers/mime_types.rb
201
+ - spec/dummy/config/initializers/secret_token.rb
202
+ - spec/dummy/config/initializers/session_store.rb
203
+ - spec/dummy/config/initializers/wrap_parameters.rb
204
+ - spec/dummy/config/locales/en.yml
205
+ - spec/dummy/config/routes.rb
206
+ - spec/dummy/lib/assets/.gitkeep
207
+ - spec/dummy/log/.gitkeep
208
+ - spec/dummy/public/404.html
209
+ - spec/dummy/public/422.html
210
+ - spec/dummy/public/500.html
211
+ - spec/dummy/public/favicon.ico
212
+ - spec/dummy/script/rails
213
+ - spec/ios-checkboxes_spec.rb
214
+ - spec/javascripts/ios-checkboxes_spec.js.coffee
215
+ - spec/javascripts/spec.css
216
+ - spec/javascripts/spec.js.coffee
217
+ - spec/javascripts/support/custom-theme.css.sass
218
+ - spec/spec_helper.rb
219
+ - spec/support/asset_matchers.rb