wice_grid 3.3.0 → 3.3.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.
- data/README.rdoc +2 -1
- data/Rakefile +1 -4
- data/wice_grid.gemspec +2 -1
- metadata +3 -2
data/README.rdoc
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
= WiceGrid
|
|
2
2
|
|
|
3
|
-
Version:: 3.3.
|
|
3
|
+
Version:: 3.3.1
|
|
4
4
|
Author:: Yuri Leikind
|
|
5
5
|
Sources:: https://github.com/leikind/wice_grid/
|
|
6
6
|
Examples online:: http://wicegrid.herokuapp.com
|
|
@@ -8,6 +8,7 @@ News:: http://leikind.org/pages/wicegrid/
|
|
|
8
8
|
Email:: "Yuri Leikind" <yuri.leikind at gmail dot com>
|
|
9
9
|
|
|
10
10
|
FOR RAILS 3 USE VERSION 3.x
|
|
11
|
+
|
|
11
12
|
FOR RAILS 2 USE VERSION 0.6 (https://github.com/leikind/wice_grid/tree/master).
|
|
12
13
|
|
|
13
14
|
|
data/Rakefile
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
require "bundler/gem_tasks"
|
|
2
|
-
require
|
|
3
|
-
|
|
4
|
-
RSpec::Core::RakeTask.new
|
|
2
|
+
require 'rdoc/task'
|
|
5
3
|
|
|
6
4
|
task :default => :rdoc
|
|
7
5
|
|
|
@@ -12,7 +10,6 @@ Rake::RDocTask.new(:rdoc) do |rdoc|
|
|
|
12
10
|
rdoc.options << '--line-numbers' << '--inline-source'
|
|
13
11
|
rdoc.rdoc_files.include('README.rdoc')
|
|
14
12
|
rdoc.rdoc_files.include('SAVED_QUERIES_HOWTO.rdoc')
|
|
15
|
-
rdoc.rdoc_files.include('RELEASE_NOTES_3.2.pre1.rdoc')
|
|
16
13
|
rdoc.rdoc_files.include('CHANGELOG')
|
|
17
14
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
18
15
|
end
|
data/wice_grid.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'wice_grid'
|
|
3
|
-
s.version = '3.3.
|
|
3
|
+
s.version = '3.3.1'
|
|
4
4
|
s.homepage = 'https://github.com/leikind/wice_grid'
|
|
5
5
|
s.date = '2013-08-04'
|
|
6
6
|
s.summary = 'A Rails grid plugin to create grids with sorting, pagination, and (automatically generated) filters.'
|
|
@@ -11,6 +11,7 @@ Gem::Specification.new do |s|
|
|
|
11
11
|
s.authors = ['Yuri Leikind']
|
|
12
12
|
s.email = 'yuri.leikind@gmail.com'
|
|
13
13
|
s.files = `git ls-files`.split($/)
|
|
14
|
+
s.license = 'MIT'
|
|
14
15
|
|
|
15
16
|
kaminary = 'kaminari'
|
|
16
17
|
kaminary_version = '>= 0.13.0'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wice_grid
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.3.
|
|
4
|
+
version: 3.3.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -104,7 +104,8 @@ files:
|
|
|
104
104
|
- vendor/assets/javascripts/wice_grid_saved_queries_init.js.coffee
|
|
105
105
|
- wice_grid.gemspec
|
|
106
106
|
homepage: https://github.com/leikind/wice_grid
|
|
107
|
-
licenses:
|
|
107
|
+
licenses:
|
|
108
|
+
- MIT
|
|
108
109
|
post_install_message:
|
|
109
110
|
rdoc_options: []
|
|
110
111
|
require_paths:
|