-
Notifications
You must be signed in to change notification settings - Fork 1
/
alchemy.gemspec
20 lines (16 loc) · 1.1 KB
/
alchemy.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "alchemy/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "alchemy"
s.version = Alchemy::VERSION
s.authors = ["UI Alchemy Team"]
s.email = ["N/A"]
s.homepage = "http://www.ui-alchemy.org"
s.summary = "A set of tools and web assets designed to enhance a web applications user interactions by providing functionality, layout and styling that is also customizable and flexible depending on the project's needs."
s.description = "Independent, componentized, highly customizable, expandable javascript, css, font and image assets to simplify initial design of web elements such as buttons, forms, notifications, etc. Alchemy includes a set of Ruby on Rails specific functionality: Forms (with SimpleForm support), Predefined layout elements (header, navigation, footer) and layout structure."
s.files = Dir["{app,vendor,lib}/**/*"] + ["LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", '>= 3.0.0'
end