enju_message 0.1.14.pre17 → 0.1.14.pre18
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.
- checksums.yaml +4 -4
- data/app/models/message.rb +2 -2
- data/lib/enju_message/version.rb +1 -1
- data/spec/dummy/config/boot.rb +2 -2
- data/spec/dummy/config/initializers/friendly_id.rb +90 -0
- data/spec/dummy/db/migrate/20110627035057_create_series_statement_merges.rb +1 -1
- data/spec/dummy/db/schema.rb +1 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/solr/default/data/index/_qz.fdt +0 -0
- data/spec/dummy/solr/default/data/index/{_q3.fdx → _qz.fdx} +0 -0
- data/spec/dummy/solr/default/data/index/{_q3.fnm → _qz.fnm} +0 -0
- data/spec/dummy/solr/default/data/index/{_q3.nvd → _qz.nvd} +0 -0
- data/spec/dummy/solr/default/data/index/{_q3.nvm → _qz.nvm} +0 -0
- data/spec/dummy/solr/default/data/index/{_q3.si → _qz.si} +0 -0
- data/spec/dummy/solr/default/data/index/{_q3_Lucene41_0.doc → _qz_Lucene41_0.doc} +0 -0
- data/spec/dummy/solr/default/data/index/{_q3_Lucene41_0.pos → _qz_Lucene41_0.pos} +0 -0
- data/spec/dummy/solr/default/data/index/{_q3_Lucene41_0.tim → _qz_Lucene41_0.tim} +0 -0
- data/spec/dummy/solr/default/data/index/{_q3_Lucene41_0.tip → _qz_Lucene41_0.tip} +0 -0
- data/spec/dummy/solr/default/data/index/segments.gen +0 -0
- data/spec/dummy/solr/default/data/index/segments_19r +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001636 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001637 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001638 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001639 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001640 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001641 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001642 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001643 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001644 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001645 +0 -0
- metadata +54 -52
- data/spec/dummy/solr/default/data/index/_q3.fdt +0 -0
- data/spec/dummy/solr/default/data/index/segments_17z +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001572 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001573 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001574 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001575 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001576 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001577 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001578 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001579 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001580 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001581 +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 004aa8590cc20abdc5f3c528cdd94269c27de7ff
|
4
|
+
data.tar.gz: ff821dc630b8cf8c648636bc98ced539ca04b34d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: afb72ca0304e2be0e8ed351565ce1fb81aa7b098c8af93dff99cb7aa6de6c68ee1255667bcae1dabeb89878ea15d747ec980f5354cac36ff35f12f5ac84c9254
|
7
|
+
data.tar.gz: ee71da95407ad2fdcb2d6085bafd1c674489bb35d33c894bd8e0d6ce3325f96ee5579b3a7676e739cac5d09d7b624d90c2c23a12fee07ca371525d3c0d5cc2ad
|
data/app/models/message.rb
CHANGED
@@ -37,7 +37,7 @@ class Message < ActiveRecord::Base
|
|
37
37
|
|
38
38
|
paginates_per 10
|
39
39
|
has_many :message_transitions
|
40
|
-
|
40
|
+
after_create :set_default_state
|
41
41
|
|
42
42
|
def state_machine
|
43
43
|
@state_machine ||= MessageStateMachine.new(self, transition_class: MessageTransition)
|
@@ -71,7 +71,7 @@ class Message < ActiveRecord::Base
|
|
71
71
|
end
|
72
72
|
|
73
73
|
def set_default_state
|
74
|
-
transition_to(:unread)
|
74
|
+
transition_to!(:unread)
|
75
75
|
end
|
76
76
|
end
|
77
77
|
|
data/lib/enju_message/version.rb
CHANGED
data/spec/dummy/config/boot.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
require 'rubygems'
|
2
|
-
gemfile = File.expand_path('../../../../Gemfile', __FILE__)
|
2
|
+
gemfile = ENV['BUNDLE_GEMFILE'] || File.expand_path('../../../../Gemfile', __FILE__)
|
3
3
|
|
4
4
|
if File.exist?(gemfile)
|
5
5
|
ENV['BUNDLE_GEMFILE'] = gemfile
|
@@ -7,4 +7,4 @@ if File.exist?(gemfile)
|
|
7
7
|
Bundler.setup
|
8
8
|
end
|
9
9
|
|
10
|
-
$:.unshift File.expand_path('../../../../lib', __FILE__)
|
10
|
+
$:.unshift File.expand_path('../../../../lib', __FILE__)
|
@@ -0,0 +1,90 @@
|
|
1
|
+
# FriendlyId Global Configuration
|
2
|
+
#
|
3
|
+
# Use this to set up shared configuration options for your entire application.
|
4
|
+
# Any of the configuration options shown here can also be applied to single
|
5
|
+
# models by passing arguments to the `friendly_id` class method or defining
|
6
|
+
# methods in your model.
|
7
|
+
#
|
8
|
+
# To learn more, check out the guide:
|
9
|
+
#
|
10
|
+
# http://norman.github.io/friendly_id/file.Guide.html
|
11
|
+
|
12
|
+
if Rails::VERSION::MAJOR == 4
|
13
|
+
FriendlyId.defaults do |config|
|
14
|
+
# ## Reserved Words
|
15
|
+
#
|
16
|
+
# Some words could conflict with Rails's routes when used as slugs, or are
|
17
|
+
# undesirable to allow as slugs. Edit this list as needed for your app.
|
18
|
+
config.use :reserved
|
19
|
+
|
20
|
+
config.reserved_words = %w(new edit index session login logout users admin
|
21
|
+
stylesheets assets javascripts images)
|
22
|
+
|
23
|
+
# ## Friendly Finders
|
24
|
+
#
|
25
|
+
# Uncomment this to use friendly finders in all models. By default, if
|
26
|
+
# you wish to find a record by its friendly id, you must do:
|
27
|
+
#
|
28
|
+
# MyModel.friendly.find('foo')
|
29
|
+
#
|
30
|
+
# If you uncomment this, you can do:
|
31
|
+
#
|
32
|
+
# MyModel.find('foo')
|
33
|
+
#
|
34
|
+
# This is significantly more convenient but may not be appropriate for
|
35
|
+
# all applications, so you must explicity opt-in to this behavior. You can
|
36
|
+
# always also configure it on a per-model basis if you prefer.
|
37
|
+
#
|
38
|
+
# Something else to consider is that using the :finders addon boosts
|
39
|
+
# performance because it will avoid Rails-internal code that makes runtime
|
40
|
+
# calls to `Module.extend`.
|
41
|
+
#
|
42
|
+
config.use :finders
|
43
|
+
#
|
44
|
+
# ## Slugs
|
45
|
+
#
|
46
|
+
# Most applications will use the :slugged module everywhere. If you wish
|
47
|
+
# to do so, uncomment the following line.
|
48
|
+
#
|
49
|
+
# config.use :slugged
|
50
|
+
#
|
51
|
+
# By default, FriendlyId's :slugged addon expects the slug column to be named
|
52
|
+
# 'slug', but you can change it if you wish.
|
53
|
+
#
|
54
|
+
# config.slug_column = 'slug'
|
55
|
+
#
|
56
|
+
# When FriendlyId can not generate a unique ID from your base method, it appends
|
57
|
+
# a UUID, separated by a single dash. You can configure the character used as the
|
58
|
+
# separator. If you're upgrading from FriendlyId 4, you may wish to replace this
|
59
|
+
# with two dashes.
|
60
|
+
#
|
61
|
+
# config.sequence_separator = '-'
|
62
|
+
#
|
63
|
+
# ## Tips and Tricks
|
64
|
+
#
|
65
|
+
# ### Controlling when slugs are generated
|
66
|
+
#
|
67
|
+
# As of FriendlyId 5.0, new slugs are generated only when the slug field is
|
68
|
+
# nil, but if you're using a column as your base method can change this
|
69
|
+
# behavior by overriding the `should_generate_new_friendly_id` method that
|
70
|
+
# FriendlyId adds to your model. The change below makes FriendlyId 5.0 behave
|
71
|
+
# more like 4.0.
|
72
|
+
#
|
73
|
+
# config.use Module.new {
|
74
|
+
# def should_generate_new_friendly_id?
|
75
|
+
# slug.blank? || <your_column_name_here>_changed?
|
76
|
+
# end
|
77
|
+
# }
|
78
|
+
#
|
79
|
+
# FriendlyId uses Rails's `parameterize` method to generate slugs, but for
|
80
|
+
# languages that don't use the Roman alphabet, that's not usually suffient. Here
|
81
|
+
# we use the Babosa library to transliterate Russian Cyrillic slugs to ASCII. If
|
82
|
+
# you use this, don't forget to add "babosa" to your Gemfile.
|
83
|
+
#
|
84
|
+
# config.use Module.new {
|
85
|
+
# def normalize_friendly_id(text)
|
86
|
+
# text.to_slug.normalize! :transliterations => [:russian, :latin]
|
87
|
+
# end
|
88
|
+
# }
|
89
|
+
end
|
90
|
+
end
|
@@ -7,6 +7,6 @@ class CreateSeriesStatementMerges < ActiveRecord::Migration
|
|
7
7
|
t.timestamps
|
8
8
|
end
|
9
9
|
add_index :series_statement_merges, :series_statement_id
|
10
|
-
add_index :series_statement_merges, :series_statement_merge_list_id
|
10
|
+
add_index :series_statement_merges, :series_statement_merge_list_id, name: "index_series_statement_merges_on_list_id"
|
11
11
|
end
|
12
12
|
end
|
data/spec/dummy/db/schema.rb
CHANGED
@@ -813,7 +813,7 @@ ActiveRecord::Schema.define(:version => 20140817155043) do
|
|
813
813
|
end
|
814
814
|
|
815
815
|
add_index "series_statement_merges", ["series_statement_id"], :name => "index_series_statement_merges_on_series_statement_id"
|
816
|
-
add_index "series_statement_merges", ["series_statement_merge_list_id"], :name => "
|
816
|
+
add_index "series_statement_merges", ["series_statement_merge_list_id"], :name => "index_series_statement_merges_on_list_id"
|
817
817
|
|
818
818
|
create_table "series_statements", :force => true do |t|
|
819
819
|
t.text "original_title"
|
data/spec/dummy/db/test.sqlite3
CHANGED
Binary file
|
Binary file
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
Binary file
|
File without changes
|
File without changes
|
Binary file
|
File without changes
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: enju_message
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.14.
|
4
|
+
version: 0.1.14.pre18
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kosuke Tanabe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-09-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: enju_seed
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.1.1.
|
19
|
+
version: 0.1.1.pre11
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.1.1.
|
26
|
+
version: 0.1.1.pre11
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: simple_form
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -42,16 +42,16 @@ dependencies:
|
|
42
42
|
name: awesome_nested_set
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
45
|
+
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
47
|
+
version: '0'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - "
|
52
|
+
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
54
|
+
version: '0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: statesman
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -128,14 +128,14 @@ dependencies:
|
|
128
128
|
requirements:
|
129
129
|
- - "~>"
|
130
130
|
- !ruby/object:Gem::Version
|
131
|
-
version:
|
131
|
+
version: 3.0.2
|
132
132
|
type: :development
|
133
133
|
prerelease: false
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
135
135
|
requirements:
|
136
136
|
- - "~>"
|
137
137
|
- !ruby/object:Gem::Version
|
138
|
-
version:
|
138
|
+
version: 3.0.2
|
139
139
|
- !ruby/object:Gem::Dependency
|
140
140
|
name: factory_girl_rails
|
141
141
|
requirement: !ruby/object:Gem::Requirement
|
@@ -305,6 +305,7 @@ files:
|
|
305
305
|
- spec/dummy/config/environments/test.rb
|
306
306
|
- spec/dummy/config/initializers/backtrace_silencers.rb
|
307
307
|
- spec/dummy/config/initializers/devise.rb
|
308
|
+
- spec/dummy/config/initializers/friendly_id.rb
|
308
309
|
- spec/dummy/config/initializers/inflections.rb
|
309
310
|
- spec/dummy/config/initializers/mime_types.rb
|
310
311
|
- spec/dummy/config/initializers/resque_mailer.rb
|
@@ -453,28 +454,28 @@ files:
|
|
453
454
|
- spec/dummy/solr/conf/spellings.txt
|
454
455
|
- spec/dummy/solr/conf/stopwords.txt
|
455
456
|
- spec/dummy/solr/conf/synonyms.txt
|
456
|
-
- spec/dummy/solr/default/data/index/
|
457
|
-
- spec/dummy/solr/default/data/index/
|
458
|
-
- spec/dummy/solr/default/data/index/
|
459
|
-
- spec/dummy/solr/default/data/index/
|
460
|
-
- spec/dummy/solr/default/data/index/
|
461
|
-
- spec/dummy/solr/default/data/index/
|
462
|
-
- spec/dummy/solr/default/data/index/
|
463
|
-
- spec/dummy/solr/default/data/index/
|
464
|
-
- spec/dummy/solr/default/data/index/
|
465
|
-
- spec/dummy/solr/default/data/index/
|
457
|
+
- spec/dummy/solr/default/data/index/_qz.fdt
|
458
|
+
- spec/dummy/solr/default/data/index/_qz.fdx
|
459
|
+
- spec/dummy/solr/default/data/index/_qz.fnm
|
460
|
+
- spec/dummy/solr/default/data/index/_qz.nvd
|
461
|
+
- spec/dummy/solr/default/data/index/_qz.nvm
|
462
|
+
- spec/dummy/solr/default/data/index/_qz.si
|
463
|
+
- spec/dummy/solr/default/data/index/_qz_Lucene41_0.doc
|
464
|
+
- spec/dummy/solr/default/data/index/_qz_Lucene41_0.pos
|
465
|
+
- spec/dummy/solr/default/data/index/_qz_Lucene41_0.tim
|
466
|
+
- spec/dummy/solr/default/data/index/_qz_Lucene41_0.tip
|
466
467
|
- spec/dummy/solr/default/data/index/segments.gen
|
467
|
-
- spec/dummy/solr/default/data/index/
|
468
|
-
- spec/dummy/solr/default/data/tlog/tlog.
|
469
|
-
- spec/dummy/solr/default/data/tlog/tlog.
|
470
|
-
- spec/dummy/solr/default/data/tlog/tlog.
|
471
|
-
- spec/dummy/solr/default/data/tlog/tlog.
|
472
|
-
- spec/dummy/solr/default/data/tlog/tlog.
|
473
|
-
- spec/dummy/solr/default/data/tlog/tlog.
|
474
|
-
- spec/dummy/solr/default/data/tlog/tlog.
|
475
|
-
- spec/dummy/solr/default/data/tlog/tlog.
|
476
|
-
- spec/dummy/solr/default/data/tlog/tlog.
|
477
|
-
- spec/dummy/solr/default/data/tlog/tlog.
|
468
|
+
- spec/dummy/solr/default/data/index/segments_19r
|
469
|
+
- spec/dummy/solr/default/data/tlog/tlog.0000000000000001636
|
470
|
+
- spec/dummy/solr/default/data/tlog/tlog.0000000000000001637
|
471
|
+
- spec/dummy/solr/default/data/tlog/tlog.0000000000000001638
|
472
|
+
- spec/dummy/solr/default/data/tlog/tlog.0000000000000001639
|
473
|
+
- spec/dummy/solr/default/data/tlog/tlog.0000000000000001640
|
474
|
+
- spec/dummy/solr/default/data/tlog/tlog.0000000000000001641
|
475
|
+
- spec/dummy/solr/default/data/tlog/tlog.0000000000000001642
|
476
|
+
- spec/dummy/solr/default/data/tlog/tlog.0000000000000001643
|
477
|
+
- spec/dummy/solr/default/data/tlog/tlog.0000000000000001644
|
478
|
+
- spec/dummy/solr/default/data/tlog/tlog.0000000000000001645
|
478
479
|
- spec/dummy/solr/development/data/index/segments.gen
|
479
480
|
- spec/dummy/solr/development/data/index/segments_1
|
480
481
|
- spec/dummy/solr/solr.xml
|
@@ -548,6 +549,7 @@ test_files:
|
|
548
549
|
- spec/dummy/config/environments/test.rb
|
549
550
|
- spec/dummy/config/initializers/backtrace_silencers.rb
|
550
551
|
- spec/dummy/config/initializers/devise.rb
|
552
|
+
- spec/dummy/config/initializers/friendly_id.rb
|
551
553
|
- spec/dummy/config/initializers/inflections.rb
|
552
554
|
- spec/dummy/config/initializers/mime_types.rb
|
553
555
|
- spec/dummy/config/initializers/resque_mailer.rb
|
@@ -698,28 +700,28 @@ test_files:
|
|
698
700
|
- spec/dummy/solr/conf/spellings.txt
|
699
701
|
- spec/dummy/solr/conf/stopwords.txt
|
700
702
|
- spec/dummy/solr/conf/synonyms.txt
|
701
|
-
- spec/dummy/solr/default/data/index/
|
702
|
-
- spec/dummy/solr/default/data/index/
|
703
|
-
- spec/dummy/solr/default/data/index/
|
704
|
-
- spec/dummy/solr/default/data/index/
|
705
|
-
- spec/dummy/solr/default/data/index/
|
706
|
-
- spec/dummy/solr/default/data/index/
|
707
|
-
- spec/dummy/solr/default/data/index/
|
708
|
-
- spec/dummy/solr/default/data/index/
|
709
|
-
- spec/dummy/solr/default/data/index/
|
710
|
-
- spec/dummy/solr/default/data/index/
|
703
|
+
- spec/dummy/solr/default/data/index/_qz.fdt
|
704
|
+
- spec/dummy/solr/default/data/index/_qz.fdx
|
705
|
+
- spec/dummy/solr/default/data/index/_qz.fnm
|
706
|
+
- spec/dummy/solr/default/data/index/_qz.nvd
|
707
|
+
- spec/dummy/solr/default/data/index/_qz.nvm
|
708
|
+
- spec/dummy/solr/default/data/index/_qz.si
|
709
|
+
- spec/dummy/solr/default/data/index/_qz_Lucene41_0.doc
|
710
|
+
- spec/dummy/solr/default/data/index/_qz_Lucene41_0.pos
|
711
|
+
- spec/dummy/solr/default/data/index/_qz_Lucene41_0.tim
|
712
|
+
- spec/dummy/solr/default/data/index/_qz_Lucene41_0.tip
|
711
713
|
- spec/dummy/solr/default/data/index/segments.gen
|
712
|
-
- spec/dummy/solr/default/data/index/
|
713
|
-
- spec/dummy/solr/default/data/tlog/tlog.
|
714
|
-
- spec/dummy/solr/default/data/tlog/tlog.
|
715
|
-
- spec/dummy/solr/default/data/tlog/tlog.
|
716
|
-
- spec/dummy/solr/default/data/tlog/tlog.
|
717
|
-
- spec/dummy/solr/default/data/tlog/tlog.
|
718
|
-
- spec/dummy/solr/default/data/tlog/tlog.
|
719
|
-
- spec/dummy/solr/default/data/tlog/tlog.
|
720
|
-
- spec/dummy/solr/default/data/tlog/tlog.
|
721
|
-
- spec/dummy/solr/default/data/tlog/tlog.
|
722
|
-
- spec/dummy/solr/default/data/tlog/tlog.
|
714
|
+
- spec/dummy/solr/default/data/index/segments_19r
|
715
|
+
- spec/dummy/solr/default/data/tlog/tlog.0000000000000001636
|
716
|
+
- spec/dummy/solr/default/data/tlog/tlog.0000000000000001637
|
717
|
+
- spec/dummy/solr/default/data/tlog/tlog.0000000000000001638
|
718
|
+
- spec/dummy/solr/default/data/tlog/tlog.0000000000000001639
|
719
|
+
- spec/dummy/solr/default/data/tlog/tlog.0000000000000001640
|
720
|
+
- spec/dummy/solr/default/data/tlog/tlog.0000000000000001641
|
721
|
+
- spec/dummy/solr/default/data/tlog/tlog.0000000000000001642
|
722
|
+
- spec/dummy/solr/default/data/tlog/tlog.0000000000000001643
|
723
|
+
- spec/dummy/solr/default/data/tlog/tlog.0000000000000001644
|
724
|
+
- spec/dummy/solr/default/data/tlog/tlog.0000000000000001645
|
723
725
|
- spec/dummy/solr/development/data/index/segments.gen
|
724
726
|
- spec/dummy/solr/development/data/index/segments_1
|
725
727
|
- spec/dummy/solr/solr.xml
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|