forked from jvillarejo/spyme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spyme.gemspec
23 lines (18 loc) · 827 Bytes
/
spyme.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "spyme/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "spyme"
s.version = Spyme::VERSION
s.authors = ["Juani Villarejo"]
s.email = ["contac@jonvillage.com"]
s.homepage = "https://github.com/jvillarejo/spyme"
s.summary = "A Rails plugin that tracks and store browser geolocation position"
s.description = "With spyme you can store and access user browser geolocated position and use it whenever you want."
s.license = "MIT"
s.files = Dir["{app,config,lib,vendor}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", "~> 4.1"
s.add_development_dependency "sqlite3", "~> 1.3"
end