-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbcms_twitter.gemspec
More file actions
30 lines (26 loc) · 1.15 KB
/
bcms_twitter.gemspec
File metadata and controls
30 lines (26 loc) · 1.15 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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "bcms_twitter/version"
Gem::Specification.new do |spec|
spec.name = "bcms_twitter"
spec.rubyforge_project = spec.name
spec.version = BcmsTwitter::VERSION
spec.summary = "A Bcms Twitter Module for BrowserCMS"
spec.author = "BrowserMedia"
spec.email = "github@browsermedia.com"
spec.homepage = "http://www.github.com/browsermedia/bcms_twitter"
spec.files = Dir["{app,db/migrate,lib}/**/*"]
spec.files -= Dir["app/views/layouts/templates/default.html.erb"]
spec.files -= Dir["db/migrate/*_browsercms*.rb"]
spec.files -= Dir["lib/tasks/build_gem.rake"]
spec.files -= Dir["app/controllers/application_controller.rb"]
spec.files -= Dir["app/helpers/application_helper.rb"]
spec.files -= Dir["app/views/layouts/application.html.erb"]
spec.files += Dir["public/bcms/twitter/**/*"]
spec.files += Dir["Gemfile", "LICENSE.txt", "COPYRIGHT.txt", "GPL.txt" ]
spec.test_files += Dir["test/**/*"]
spec.add_dependency('browsercms', "~>3.3.3")
spec.add_dependency('twitter', "~>4.5.0")
spec.require_paths = ["lib"]
spec.extra_rdoc_files = ["README.markdown" ]
end