-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsentiql.gemspec
More file actions
27 lines (22 loc) · 1015 Bytes
/
sentiql.gemspec
File metadata and controls
27 lines (22 loc) · 1015 Bytes
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "sentiql/version"
Gem::Specification.new do |s|
s.name = "sentiql"
s.version = SentiQL::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Martynas Miliauskas"]
s.email = ["miliauskas@facebook.com"]
s.homepage = ""
s.summary = %q{A minimalistic Ruby wrapper for MySQL}
s.description = %q{This is a work in progress. SentiQL promotes use of SQL for data selection, OM for CUD operations and being as lean as possible.}
s.rubyforge_project = "sentiql"
s.add_runtime_dependency 'mysql2', '< 0.3'
s.add_development_dependency 'rspec'
s.add_development_dependency 'database_cleaner'
s.add_development_dependency 'activerecord', '~> 3.0.5'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end