underscore-rails-1.8.2/0000755000175000017500000000000012474631201016271 5ustar balasankarcbalasankarcunderscore-rails-1.8.2/LICENSE.md0000644000175000017500000000211312474631201017672 0ustar balasankarcbalasankarcThe MIT License (MIT) Copyright (c) 2013 Robin Wenglewski, Travis Jeffery Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. underscore-rails-1.8.2/Gemfile0000644000175000017500000000014412474631201017563 0ustar balasankarcbalasankarcsource "http://rubygems.org" # Specify your gem's dependencies in underscore-rails.gemspec gemspec underscore-rails-1.8.2/.gitignore0000644000175000017500000000004712474631201020262 0ustar balasankarcbalasankarc*.gem .bundle Gemfile.lock pkg/* .idea/underscore-rails-1.8.2/Rakefile0000644000175000017500000000003412474631201017733 0ustar balasankarcbalasankarcrequire "bundler/gem_tasks" underscore-rails-1.8.2/underscore-rails.gemspec0000644000175000017500000000134012474631201023115 0ustar balasankarcbalasankarc# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "underscore-rails/version" Gem::Specification.new do |s| s.name = "underscore-rails" s.version = Underscore::Rails::VERSION s.authors = ["Robin Wenglewski"] s.email = ["robin@wenglewski.de"] s.homepage = "https://github.com/rweng/underscore-rails" s.summary = %q{underscore.js asset pipeline provider/wrapper} s.license = "MIT" s.rubyforge_project = "underscore-rails" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] end underscore-rails-1.8.2/vendor/0000755000175000017500000000000012474631201017566 5ustar balasankarcbalasankarcunderscore-rails-1.8.2/vendor/assets/0000755000175000017500000000000012474631201021070 5ustar balasankarcbalasankarcunderscore-rails-1.8.2/vendor/assets/javascripts/0000755000175000017500000000000012474631201023421 5ustar balasankarcbalasankarcunderscore-rails-1.8.2/lib/0000755000175000017500000000000012474631201017037 5ustar balasankarcbalasankarcunderscore-rails-1.8.2/lib/underscore-rails/0000755000175000017500000000000012474631201022320 5ustar balasankarcbalasankarcunderscore-rails-1.8.2/lib/underscore-rails/version.rb0000644000175000017500000000010112474631201024322 0ustar balasankarcbalasankarcmodule Underscore module Rails VERSION = "1.8.2" end end underscore-rails-1.8.2/lib/underscore-rails.rb0000644000175000017500000000045112474631201022645 0ustar balasankarcbalasankarcrequire "underscore-rails/version" module Underscore module Rails if defined?(::Rails) and Gem::Requirement.new('>= 3.1').satisfied_by?(Gem::Version.new ::Rails.version) class Rails::Engine < ::Rails::Engine # this class enables the asset pipeline end end end end underscore-rails-1.8.2/Readme.md0000644000175000017500000000037312474631201020013 0ustar balasankarcbalasankarcRails 3.1 asset-pipeline gem to provide underscore.js # Setup Have in your Gemfile: gem 'underscore-rails' And, have in your application.js manifest: //= require underscore (also directly available under `/assets/underscore.js`) Easy as pie.