-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsnipp.gemspec
More file actions
22 lines (19 loc) · 844 Bytes
/
snipp.gemspec
File metadata and controls
22 lines (19 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'snipp/version'
Gem::Specification.new do |gem|
gem.name = "snipp"
gem.version = Snipp::VERSION
gem.authors = ["yulii"]
gem.email = ["yuliinfo@gmail.com"]
gem.description = %q{Search Engine Optimization (SEO) helpers for Ruby on Rails}
gem.summary = %q{Let search engines understand the content on your website}
gem.homepage = "https://github.com/yulii/snipp"
gem.license = 'MIT'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency 'rails', '>= 3.2.11'
end