forked from starburstgem/starburst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
starburst.gemspec
29 lines (23 loc) · 934 Bytes
/
starburst.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "starburst/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "starburst"
s.version = Starburst::VERSION
s.authors = ["Corey Martin"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/csm123/starburst"
s.summary = "One-time messages to users in your app"
s.description = "Show one-time messages to users in your Rails app"
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.add_dependency "rails", ">= 3.0"
s.add_development_dependency "sqlite3"
#RSpec
s.test_files = Dir["spec/**/*"]
s.add_development_dependency "rspec-rails"
s.add_development_dependency "capybara"
s.add_development_dependency "factory_girl_rails"
s.add_development_dependency "appraisal"
end