dusen 0.4.5 → 0.4.6

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.
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Henning Koch
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/dusen.gemspec CHANGED
@@ -9,9 +9,10 @@ Gem::Specification.new do |s|
9
9
  s.homepage = 'https://github.com/makandra/dusen'
10
10
  s.summary = 'Comprehensive full text search for ActiveRecord and MySQL'
11
11
  s.description = s.summary
12
+ s.license = 'MIT'
12
13
 
13
- s.files = `git ls-files`.split("\n")
14
- s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
14
+ s.files = `git ls-files`.split("\n").reject { |path| File.lstat(path).symlink? }
15
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n").reject { |path| File.lstat(path).symlink? }
15
16
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
16
17
  s.require_paths = ["lib"]
17
18
 
data/lib/dusen/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  module Dusen
4
- VERSION = '0.4.5'
4
+ VERSION = '0.4.6'
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dusen
3
3
  version: !ruby/object:Gem::Version
4
- hash: 5
4
+ hash: 3
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 4
9
- - 5
10
- version: 0.4.5
9
+ - 6
10
+ version: 0.4.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Henning Koch
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2013-05-17 00:00:00 +02:00
18
+ date: 2013-07-26 00:00:00 +02:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -44,6 +44,7 @@ files:
44
44
  - .gitignore
45
45
  - .rvmrc
46
46
  - .travis.yml
47
+ - LICENSE
47
48
  - README.md
48
49
  - Rakefile
49
50
  - documents/fulltext_vs_like_benchmark/all_records_and_scope/fulltext.csv
@@ -70,7 +71,6 @@ files:
70
71
  - spec/rails-2.3/Gemfile
71
72
  - spec/rails-2.3/Rakefile
72
73
  - spec/rails-2.3/app_root/config/boot.rb
73
- - spec/rails-2.3/app_root/config/database.yml
74
74
  - spec/rails-2.3/app_root/config/environment.rb
75
75
  - spec/rails-2.3/app_root/config/environments/test.rb
76
76
  - spec/rails-2.3/app_root/config/initializers/fix_missing_source_file.rb
@@ -86,7 +86,6 @@ files:
86
86
  - spec/rails-3.0/app_root/.gitignore
87
87
  - spec/rails-3.0/app_root/config/application.rb
88
88
  - spec/rails-3.0/app_root/config/boot.rb
89
- - spec/rails-3.0/app_root/config/database.yml
90
89
  - spec/rails-3.0/app_root/config/environment.rb
91
90
  - spec/rails-3.0/app_root/config/environments/test.rb
92
91
  - spec/rails-3.0/app_root/config/initializers/backtrace_silencers.rb
@@ -106,7 +105,6 @@ files:
106
105
  - spec/rails-3.2/app_root/.gitignore
107
106
  - spec/rails-3.2/app_root/config/application.rb
108
107
  - spec/rails-3.2/app_root/config/boot.rb
109
- - spec/rails-3.2/app_root/config/database.yml
110
108
  - spec/rails-3.2/app_root/config/environment.rb
111
109
  - spec/rails-3.2/app_root/config/environments/test.rb
112
110
  - spec/rails-3.2/app_root/config/initializers/backtrace_silencers.rb
@@ -135,8 +133,8 @@ files:
135
133
  - spec/shared/spec/dusen/util_spec.rb
136
134
  has_rdoc: true
137
135
  homepage: https://github.com/makandra/dusen
138
- licenses: []
139
-
136
+ licenses:
137
+ - MIT
140
138
  post_install_message:
141
139
  rdoc_options: []
142
140
 
@@ -1,6 +0,0 @@
1
- test:
2
- adapter: mysql2
3
- host: localhost
4
- username: root
5
- password: junior
6
- database: dusen_test
@@ -1,6 +0,0 @@
1
- test:
2
- adapter: mysql2
3
- host: localhost
4
- username: root
5
- password: junior
6
- database: dusen_test
@@ -1,6 +0,0 @@
1
- test:
2
- adapter: mysql2
3
- host: localhost
4
- username: root
5
- password: junior
6
- database: dusen_test