active_sql 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. data/lib/active_sql.rb +9 -0
  2. data/lib/activesql.so +0 -0
  3. data/readme.txt +12 -0
  4. metadata +68 -0
data/lib/active_sql.rb ADDED
@@ -0,0 +1,9 @@
1
+ begin
2
+ require 'activesql'
3
+ rescue LoadError
4
+ if RUBY_PLATFORM =~ /mingw|mswin/ then
5
+ RUBY_VERSION =~ /(\d+.\d+)/
6
+ require "#{$1}/active_sql"
7
+ end
8
+ end
9
+
data/lib/activesql.so ADDED
Binary file
data/readme.txt ADDED
@@ -0,0 +1,12 @@
1
+ Welcome :
2
+ =========
3
+
4
+ ActiveSQL is super fast.
5
+
6
+ It works on mysql 5 or greater versions(tested under linux).
7
+
8
+ Usage.
9
+ ========
10
+
11
+
12
+
metadata ADDED
@@ -0,0 +1,68 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: active_sql
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 1
7
+ - 0
8
+ - 1
9
+ version: 1.0.1
10
+ platform: ruby
11
+ authors:
12
+ - sasie
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2012-03-14 00:00:00 +05:30
18
+ default_executable:
19
+ dependencies: []
20
+
21
+ description: Easy to work with mysql from ruby and rails
22
+ email: sasie@rocketmail.com
23
+ executables: []
24
+
25
+ extensions: []
26
+
27
+ extra_rdoc_files: []
28
+
29
+ files:
30
+ - lib/activesql.so
31
+ - lib/active_sql.rb
32
+ - readme.txt
33
+ has_rdoc: true
34
+ homepage: http://github.com/
35
+ licenses: []
36
+
37
+ post_install_message:
38
+ rdoc_options: []
39
+
40
+ require_paths:
41
+ - lib
42
+ required_ruby_version: !ruby/object:Gem::Requirement
43
+ none: false
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ segments:
48
+ - 1
49
+ - 8
50
+ - 7
51
+ version: 1.8.7
52
+ required_rubygems_version: !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ segments:
58
+ - 0
59
+ version: "0"
60
+ requirements: []
61
+
62
+ rubyforge_project:
63
+ rubygems_version: 1.3.7
64
+ signing_key:
65
+ specification_version: 3
66
+ summary: do more with sql queries. dont rely on ORM.
67
+ test_files: []
68
+