forked from erikflowers/weather-icons
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathweather-icons-rails.gemspec
31 lines (25 loc) · 1.25 KB
/
weather-icons-rails.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require File.expand_path('../lib/weather-icons/rails/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Cody Schaaf"]
gem.email = ["[email protected]"]
gem.description = "I like font-awesome, weather-icons, and rails. So I am doing my best to combine weather-icons into an easy to use gem."
gem.summary = "an asset gemification of the weather-icons icon font library"
gem.homepage = "https://github.com/CodySchaaf/weather-icons-rails"
gem.licenses = "MIT"
gem.date = '2014-04-15'
gem.name = "weather-icons-rails"
gem.version = WeatherIcons::Rails::VERSION
gem.files = Dir["{app,lib}/**/*"] + ["LICENSE", "Rakefile", "README.md"]
gem.test_files = Dir["test/**/*"]
gem.require_paths = ["lib"]
gem.add_dependency "railties", ">= 3.2"
gem.add_development_dependency 'activesupport', '~> 4.1.0'
gem.add_development_dependency 'sass-rails', '~> 4.0.1'
gem.add_development_dependency 'bundler', '~> 1.3'
gem.add_development_dependency 'rake', '~> 10.3.0'
gem.add_development_dependency 'compass'
gem.add_runtime_dependency 'sass', '~> 3.2'
end