forked from hermango/shareable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshareable.gemspec
More file actions
executable file
·44 lines (39 loc) · 1.79 KB
/
shareable.gemspec
File metadata and controls
executable file
·44 lines (39 loc) · 1.79 KB
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
41
42
43
44
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "shareable/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "shareable"
s.version = Shareable::VERSION
s.authors = ["Hermango"]
s.homepage = "http://github.com/hermango/shareable"
s.summary = "Simple and unobtrusive gem for adding social links to your Rails app."
s.description = "Add social sharing links to a view in your Rails app with one method call. The configuration options for each social link are customizable. Please see read me doc for more details."
s.require_paths = ['lib']
s.licenses = ['MIT']
s.files = ["app/views/shareable/_facebook.html.erb",
"app/views/shareable/_google_plus.html.erb",
"app/views/shareable/_linkedin.html.erb",
"app/views/shareable/_pinterest.html.erb",
"app/views/shareable/_reddit.html.erb",
"app/views/shareable/_social_buttons.html.erb",
"app/views/shareable/_twitter.html.erb",
"lib/shareable/helpers/action_view_extension.rb",
"lib/shareable/helpers/social_buttons.rb",
"lib/shareable/helpers/tags.rb",
"lib/shareable/config.rb",
"lib/shareable/engine.rb",
"lib/shareable/hooks.rb",
"lib/shareable/railtie.rb",
"lib/shareable/version.rb",
"lib/shareable.rb",
"MIT-LICENSE", "Gemfile", "Gemfile.lock", "Rakefile", "README.rdoc"]
#s.test_files = Dir["test/**/*"]
s.add_dependency 'activesupport', ['>= 3.0.0']
s.add_dependency 'actionpack', ['>= 3.0.0']
s.add_development_dependency 'bundler', ['>= 1.0.0']
s.add_development_dependency 'tzinfo', ['>= 0']
s.add_development_dependency 'rspec', ['>= 0']
s.add_development_dependency 'rr', ['>= 0']
s.add_development_dependency 'capybara', ['>= 1.0']
end