-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrails_client_timezone.gemspec
41 lines (37 loc) · 1.29 KB
/
rails_client_timezone.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "rails_client_timezone/version"
Gem::Specification.new do |s|
s.name = "rails_client_timezone"
s.version = RailsClientTimezone::VERSION
s.authors = ["Udaya Kiran", "Yamini Devarajan"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{Rails Browser Timezone client gem}
s.description = %q{Simple code to detect browser time zone and handle it in rails app}
s.rubyforge_project = "rails_client_timezone"
s.files = %w[
Gemfile
README.md
LICENSE.md
lib/rails_client_timezone/filter.rb
lib/rails_client_timezone/version.rb
lib/rails_client_timezone/setting.rb
lib/rails_client_timezone/active_support_ext.rb
lib/geoip.rb
lib/rails_client_timezone.rb
data/geoip/country_code.yml
data/geoip/country_code3.yml
data/geoip/country_continent.yml
data/geoip/country_name.yml
data/geoip/GeoLiteCity.dat
data/geoip/region.yml
data/geoip/time_zone.yml
assets/set_browser_offset_cookies_jquery.js
assets/set_browser_offset_cookies_prototype.js
rails_client_timezone.gemspec
]
s.require_paths = ["lib"]
s.add_runtime_dependency "activesupport", '> 2'
s.add_runtime_dependency "geoip", '1.6.1'
end