-
Notifications
You must be signed in to change notification settings - Fork 9
/
message_block.gemspec
24 lines (20 loc) · 1.02 KB
/
message_block.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "message_block/version"
Gem::Specification.new do |s|
s.name = "message_block"
s.version = MessageBlock::VERSION
s.author = "Ben Hughes"
s.email = "[email protected]"
s.homepage = "http://github.com/rubiety/message_block"
s.summary = "Flash message and error_messages_for handling with a common interface via the asset pipeline"
s.description = "Implements the common view pattern by which a list of messages are shown at the top, often a combination of flash messages and ActiveRecord validation issues on one or more models."
s.files = Dir["{lib,spec,vendor}/**/*", "[A-Z]*", "init.rb"]
s.require_path = "lib"
s.rubyforge_project = s.name
s.required_rubygems_version = ">= 1.3.4"
s.add_dependency("rails", [">= 3.1.0"])
s.add_development_dependency("rspec", ["~> 2.13"])
s.add_development_dependency("appraisal", ["~> 0.5.1"])
s.add_development_dependency("sqlite3-ruby", ["~> 1.3.1"])
end