rails_full_cal 0.0.3
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/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +41 -0
- data/Rakefile +1 -0
- data/lib/rails_full_cal.rb +6 -0
- data/lib/rails_full_cal/engine.rb +6 -0
- data/lib/rails_full_cal/version.rb +3 -0
- data/rails_full_cal.gemspec +19 -0
- data/vendor/assets/javascripts/fullcalendar.js +5220 -0
- data/vendor/assets/javascripts/gcal.js +112 -0
- data/vendor/assets/stylesheets/fullcalendar.css +618 -0
- data/vendor/assets/stylesheets/fullcalendar.print.css +61 -0
- metadata +58 -0
| @@ -0,0 +1,61 @@ | |
| 1 | 
            +
            /*
         | 
| 2 | 
            +
             * FullCalendar v1.5.4 Print Stylesheet
         | 
| 3 | 
            +
             *
         | 
| 4 | 
            +
             * Include this stylesheet on your page to get a more printer-friendly calendar.
         | 
| 5 | 
            +
             * When including this stylesheet, use the media='print' attribute of the <link> tag.
         | 
| 6 | 
            +
             * Make sure to include this stylesheet IN ADDITION to the regular fullcalendar.css.
         | 
| 7 | 
            +
             *
         | 
| 8 | 
            +
             * Copyright (c) 2011 Adam Shaw
         | 
| 9 | 
            +
             * Dual licensed under the MIT and GPL licenses, located in
         | 
| 10 | 
            +
             * MIT-LICENSE.txt and GPL-LICENSE.txt respectively.
         | 
| 11 | 
            +
             *
         | 
| 12 | 
            +
             * Date: Tue Sep 4 23:38:33 2012 -0700
         | 
| 13 | 
            +
             *
         | 
| 14 | 
            +
             */
         | 
| 15 | 
            +
             
         | 
| 16 | 
            +
             
         | 
| 17 | 
            +
             /* Events
         | 
| 18 | 
            +
            -----------------------------------------------------*/
         | 
| 19 | 
            +
             
         | 
| 20 | 
            +
            .fc-event-skin {
         | 
| 21 | 
            +
            	background: none !important;
         | 
| 22 | 
            +
            	color: #000 !important;
         | 
| 23 | 
            +
            	}
         | 
| 24 | 
            +
            	
         | 
| 25 | 
            +
            /* horizontal events */
         | 
| 26 | 
            +
            	
         | 
| 27 | 
            +
            .fc-event-hori {
         | 
| 28 | 
            +
            	border-width: 0 0 1px 0 !important;
         | 
| 29 | 
            +
            	border-bottom-style: dotted !important;
         | 
| 30 | 
            +
            	border-bottom-color: #000 !important;
         | 
| 31 | 
            +
            	padding: 1px 0 0 0 !important;
         | 
| 32 | 
            +
            	}
         | 
| 33 | 
            +
            	
         | 
| 34 | 
            +
            .fc-event-hori .fc-event-inner {
         | 
| 35 | 
            +
            	border-width: 0 !important;
         | 
| 36 | 
            +
            	padding: 0 1px !important;
         | 
| 37 | 
            +
            	}
         | 
| 38 | 
            +
            	
         | 
| 39 | 
            +
            /* vertical events */
         | 
| 40 | 
            +
            	
         | 
| 41 | 
            +
            .fc-event-vert {
         | 
| 42 | 
            +
            	border-width: 0 0 0 1px !important;
         | 
| 43 | 
            +
            	border-left-style: dotted !important;
         | 
| 44 | 
            +
            	border-left-color: #000 !important;
         | 
| 45 | 
            +
            	padding: 0 1px 0 0 !important;
         | 
| 46 | 
            +
            	}
         | 
| 47 | 
            +
            	
         | 
| 48 | 
            +
            .fc-event-vert .fc-event-inner {
         | 
| 49 | 
            +
            	border-width: 0 !important;
         | 
| 50 | 
            +
            	padding: 1px 0 !important;
         | 
| 51 | 
            +
            	}
         | 
| 52 | 
            +
            	
         | 
| 53 | 
            +
            .fc-event-bg {
         | 
| 54 | 
            +
            	display: none !important;
         | 
| 55 | 
            +
            	}
         | 
| 56 | 
            +
            	
         | 
| 57 | 
            +
            .fc-event .ui-resizable-handle {
         | 
| 58 | 
            +
            	display: none !important;
         | 
| 59 | 
            +
            	}
         | 
| 60 | 
            +
            	
         | 
| 61 | 
            +
            	
         | 
    
        metadata
    ADDED
    
    | @@ -0,0 +1,58 @@ | |
| 1 | 
            +
            --- !ruby/object:Gem::Specification
         | 
| 2 | 
            +
            name: rails_full_cal
         | 
| 3 | 
            +
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            +
              version: 0.0.3
         | 
| 5 | 
            +
              prerelease: 
         | 
| 6 | 
            +
            platform: ruby
         | 
| 7 | 
            +
            authors:
         | 
| 8 | 
            +
            - Seb Weston
         | 
| 9 | 
            +
            autorequire: 
         | 
| 10 | 
            +
            bindir: bin
         | 
| 11 | 
            +
            cert_chain: []
         | 
| 12 | 
            +
            date: 2013-02-07 00:00:00.000000000 Z
         | 
| 13 | 
            +
            dependencies: []
         | 
| 14 | 
            +
            description: Include full calendar js and css files
         | 
| 15 | 
            +
            email:
         | 
| 16 | 
            +
            - sebweston@gmail.com
         | 
| 17 | 
            +
            executables: []
         | 
| 18 | 
            +
            extensions: []
         | 
| 19 | 
            +
            extra_rdoc_files: []
         | 
| 20 | 
            +
            files:
         | 
| 21 | 
            +
            - .gitignore
         | 
| 22 | 
            +
            - Gemfile
         | 
| 23 | 
            +
            - LICENSE.txt
         | 
| 24 | 
            +
            - README.md
         | 
| 25 | 
            +
            - Rakefile
         | 
| 26 | 
            +
            - lib/rails_full_cal.rb
         | 
| 27 | 
            +
            - lib/rails_full_cal/engine.rb
         | 
| 28 | 
            +
            - lib/rails_full_cal/version.rb
         | 
| 29 | 
            +
            - rails_full_cal.gemspec
         | 
| 30 | 
            +
            - vendor/assets/javascripts/fullcalendar.js
         | 
| 31 | 
            +
            - vendor/assets/javascripts/gcal.js
         | 
| 32 | 
            +
            - vendor/assets/stylesheets/fullcalendar.css
         | 
| 33 | 
            +
            - vendor/assets/stylesheets/fullcalendar.print.css
         | 
| 34 | 
            +
            homepage: ''
         | 
| 35 | 
            +
            licenses: []
         | 
| 36 | 
            +
            post_install_message: 
         | 
| 37 | 
            +
            rdoc_options: []
         | 
| 38 | 
            +
            require_paths:
         | 
| 39 | 
            +
            - lib
         | 
| 40 | 
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         | 
| 41 | 
            +
              none: false
         | 
| 42 | 
            +
              requirements:
         | 
| 43 | 
            +
              - - ! '>='
         | 
| 44 | 
            +
                - !ruby/object:Gem::Version
         | 
| 45 | 
            +
                  version: '0'
         | 
| 46 | 
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 47 | 
            +
              none: false
         | 
| 48 | 
            +
              requirements:
         | 
| 49 | 
            +
              - - ! '>='
         | 
| 50 | 
            +
                - !ruby/object:Gem::Version
         | 
| 51 | 
            +
                  version: '0'
         | 
| 52 | 
            +
            requirements: []
         | 
| 53 | 
            +
            rubyforge_project: 
         | 
| 54 | 
            +
            rubygems_version: 1.8.23
         | 
| 55 | 
            +
            signing_key: 
         | 
| 56 | 
            +
            specification_version: 3
         | 
| 57 | 
            +
            summary: Full calendar js and css files
         | 
| 58 | 
            +
            test_files: []
         |