forked from nragaz/jcrop-rails
-
Notifications
You must be signed in to change notification settings - Fork 1
/
jcrop-rails.gemspec
24 lines (20 loc) · 897 Bytes
/
jcrop-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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/jcrop/rails/version', __FILE__)
Gem::Specification.new do |s|
s.name = "jcrop-rails"
s.version = Jcrop::Rails::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Nick Ragaz"]
s.email = ["[email protected]"]
s.homepage = "http://rubygems.org/gems/jcrop-rails"
s.summary = "Use the Jcrop jQuery plugin with Rails 3.1"
s.description = "This gem provides the Jcrop jQuery plugin for your Rails 3.1 application."
s.required_rubygems_version = ">= 1.3.6"
s.add_dependency "railties", "~> 3.0"
s.add_dependency "thor", "~> 0.14"
s.add_development_dependency "bundler", "~> 1.0.0"
s.add_development_dependency "rails", "~> 3.0"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").select{|f| f =~ /^bin/}
s.require_path = 'lib'
end