forked from jpmcgrath/shortener
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathshortener_mongoid.gemspec
24 lines (23 loc) · 1.59 KB
/
shortener_mongoid.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
require File.expand_path("../lib/shortener_mongoid/version", __FILE__)
Gem::Specification.new do |s|
s.name = "shortener_mongoid"
s.summary = "Shortener is a Rails Engine that makes it easy to create shortened URLs for your rails application."
s.description = "Shortener is a Rails Engine Gem that makes it easy to create and interpret shortened URLs on your own domain from within your Rails application. Once installed Shortener will generate, store URLS and \"unshorten\" shortened URLs for your applications visitors, all whilst collecting basic usage metrics. This supports Mongoid."
s.files = `git ls-files`.split("\n")
s.version = Shortener::VERSION
s.platform = Gem::Platform::RUBY
s.authors = [ "Kenny Meyer", "James P. McGrath", "Michael Reinsch" ]
s.homepage = "https://github.com/kennym/shortener_mongoid"
s.required_rubygems_version = "> 1.3.6"
s.add_dependency "rails", ">= 3.0.7"
s.add_dependency "mongoid", "~> 2.4.11"
s.add_development_dependency "bson_ext", "~> 1.5"
s.add_development_dependency "debugger"
s.add_development_dependency "mongoid-rspec", "<= 1.4.5"
s.add_development_dependency "rspec-rails"
s.add_development_dependency "shoulda-matchers"
s.add_development_dependency "database_cleaner"
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
end