forked from AssetSync/asset_sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
asset_sync.gemspec
30 lines (24 loc) · 1.16 KB
/
asset_sync.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "asset_sync/version"
Gem::Specification.new do |s|
s.name = "asset_sync"
s.version = AssetSync::VERSION
s.date = "2012-04-26"
s.platform = Gem::Platform::RUBY
s.authors = ["Simon Hamilton", "David Rice", "Phil McClure"]
s.homepage = "https://github.com/rumblelabs/asset_sync"
s.summary = %q{Synchronises Assets in a Rails 3 application and Amazon S3/Cloudfront and Rackspace Cloudfiles}
s.description = %q{After you run assets:precompile your compiled assets will be synchronised with your S3 bucket.}
s.rubyforge_project = "asset_sync"
s.add_dependency('fog')
s.add_dependency('activemodel')
s.add_development_dependency "rspec"
s.add_development_dependency "bundler"
s.add_development_dependency "jeweler"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end