This repository has been archived by the owner on Feb 26, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathwritefully.gemspec
49 lines (42 loc) · 1.6 KB
/
writefully.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
41
42
43
44
45
46
47
48
49
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "writefully/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "writefully"
s.version = Writefully::VERSION
s.authors = ["Zack Siri"]
s.email = ["[email protected]"]
s.homepage = "http://www.codemy.net"
s.summary = %q{Makes publishing content easier by using black magic}
s.description = %q{Allows developer to quickly publish to their site using git hooks}
s.license = "MIT"
s.files = Dir["{app,config,db,lib,scripts,bin}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.executables = ["writefully", "wf-write", "wf-app"]
s.test_files = Dir["spec/**/*"]
s.add_dependency 'rails', '>= 4.2'
s.add_dependency 'coffee-rails', '~> 4.0'
s.add_dependency 'sass-rails', '~> 5.0'
s.add_dependency 'sprockets', '= 2.11.0'
s.add_dependency 'celluloid'
s.add_dependency 'fog'
s.add_dependency 'unf'
s.add_dependency 'listen', '~> 2.0'
s.add_dependency 'thor'
s.add_dependency 'pg'
s.add_dependency 'hashie'
s.add_dependency 'friendly_id'
s.add_dependency 'github_api'
s.add_dependency 'connection_pool'
s.add_dependency 'redis'
s.add_dependency 'redis-namespace'
s.add_dependency 'activerecord-import'
s.add_dependency 'jquery-rails'
s.add_dependency 'turbolinks'
s.add_dependency 'transponder'
s.add_dependency 'bootstrap-sass'
s.add_development_dependency 'pry'
s.add_development_dependency 'rspec-rails'
s.add_development_dependency 'rspec-its'
s.add_development_dependency 'capybara'
end