forked from RyanScottLewis/jquery-cookie-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery-cookie-rails.gemspec
29 lines (26 loc) · 1.15 KB
/
jquery-cookie-rails.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
# Variables
s.name = 'jquery-cookie-rails'
s.author = 'Ryan Scott Lewis'
s.email = '[email protected]'
s.summary = 'Use jquery-cookie with Rails 3'
s.description = 'This gem provides jquery-cookie assets for your Rails 3 application.'
s.license = 'MIT'
# Dependencies
s.add_dependency 'railties', '>= 3.2.0'
s.add_development_dependency 'rails', '~> 4.0'
s.add_development_dependency 'sqlite3', '~> 1.3'
s.add_development_dependency 'uglifier'
s.add_development_dependency 'sass', '~> 3.2'
s.add_development_dependency 'rake', '~> 10.0'
s.add_development_dependency 'rspec-rails', '~> 2.14.2'
s.required_rubygems_version = ">= 1.3.6"
# Pragmatically set variables
s.homepage = "http://github.com/RyanScottLewis/#{s.name}"
s.version = Pathname.glob('VERSION*').first.read rescue '0.0.0'
s.require_paths = ['lib']
s.files = %w(Gemfile jquery-cookie-rails.gemspec LICENSE Rakefile README.md vendor/assets/javascripts/jquery.cookie.js)
s.files += Dir.glob('lib/*.rb')
s.files += Dir.glob('lib/jquery-cookie-rails/**/*.rb')
end