-
Notifications
You must be signed in to change notification settings - Fork 3
/
content_spinning.gemspec
40 lines (30 loc) · 1.1 KB
/
content_spinning.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
30
31
32
33
34
35
36
37
38
39
40
# frozen_string_literal: true
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "content_spinning/version"
Gem::Specification.new do |s|
s.name = "content_spinning"
s.version = ContentSpinning::Version::STRING
s.date = Time.now.strftime("%Y-%m-%d")
s.authors = ["Maxime Garcia"]
s.email = ["[email protected]"]
s.summary = "Content Spinning"
s.homepage = "http://github.com/maximeg/content_spinning"
s.license = "MIT"
s.files = %w(README.md LICENSE)
s.files += Dir.glob("lib/**/*")
s.require_paths = ["lib"]
s.test_files = Dir.glob("spec/**/*")
s.has_rdoc = false
s.required_ruby_version = ">= 1.9"
s.required_rubygems_version = ">= 1.3.6"
s.add_development_dependency "rspec", "~> 3.4"
s.description = <<-TXT.gsub(" ", "")
To spin some text, mainly for SEO purpose.
Spinning the string "Hi {there|you}! I'm {efficient|productive}." gives
these four strings :
* Hi there! I'm efficient.
* Hi there! I'm productive.
* Hi you! I'm efficient.
* Hi you! I'm productive.
TXT
end