the_comments 2.1.0 → 2.2.0

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.md CHANGED
@@ -30,7 +30,7 @@ TheComments - probably, best commenting system for Rails
30
30
  **Gemfile**
31
31
 
32
32
  ```ruby
33
- gem "the_comments", "~> 2.0.1"
33
+ gem "the_comments", "~> 2.1.0"
34
34
 
35
35
  gem 'haml' # or gem 'slim'
36
36
  gem 'awesome_nested_set' # or same gem
@@ -144,7 +144,7 @@ class Post < ActiveRecord::Base
144
144
  end
145
145
  ```
146
146
 
147
- ### 5. Mount Engine routes
147
+ ### 5. Add routes
148
148
 
149
149
  **config/routes.rb**
150
150
 
@@ -155,7 +155,10 @@ MyApp::Application.routes.draw do
155
155
 
156
156
  # ...
157
157
 
158
- mount TheComments::Engine => '/', as: :comments
158
+ # TheComments routes
159
+ concern :user_comments, TheComments::UserRoutes.new
160
+ concern :admin_comments, TheComments::AdminRoutes.new
161
+ resources :comments, concerns: [:user_comments, :admin_comments]
159
162
  end
160
163
  ```
161
164
 
@@ -89,7 +89,7 @@ module RenderCommentsTreeHelper
89
89
 
90
90
  def moderator_controls
91
91
  if moderator?
92
- h.link_to(t('the_comments.edit'), h.comments.edit_comment_url(@comment), class: :edit)
92
+ h.link_to(t('the_comments.edit'), h.edit_comment_url(@comment), class: :edit)
93
93
  end
94
94
  end
95
95
 
@@ -1,5 +1,5 @@
1
1
  .edit_form{ style: "display:none" }
2
- = form_for [comments, comment], remote: true, html:{ role: :form } do |f|
2
+ = form_for comment, remote: true, html:{ role: :form } do |f|
3
3
  %table.table.table-striped.table-hover
4
4
  %tr{ style: "width: 100px;"}
5
5
  %td
@@ -1,7 +1,7 @@
1
1
  %h3
2
2
  = link_to t('the_comments.new'), '#', id: :new_root_comment
3
3
 
4
- = form_for [comments, Comment.new], remote: true, authenticity_token: true do |f|
4
+ = form_for Comment.new, remote: true, authenticity_token: true do |f|
5
5
  .error_notifier{ style: "display:none" }
6
6
  %label= t('the_comments.form.title')
7
7
  %p= f.text_field :title
@@ -7,21 +7,21 @@
7
7
 
8
8
  - to_hide = comment.published? ? hidden : nil
9
9
  - opts = { remote: true, style: to_hide, method: :post }
10
- = link_to [comments, :to_published, comment], opts.merge(class: "btn btn-primary to_published") do
10
+ = link_to [:to_published, comment], opts.merge(class: "btn btn-primary to_published") do
11
11
  = t('the_comments.to_published')
12
12
 
13
13
  - to_hide = comment.draft? ? hidden : nil
14
14
  - opts = { remote: true, style: to_hide, method: :post }
15
- = link_to [comments, :to_draft, comment], opts.merge(class: "btn btn-warning to_draft") do
15
+ = link_to [:to_draft, comment], opts.merge(class: "btn btn-warning to_draft") do
16
16
  = t('the_comments.to_draft')
17
17
 
18
18
  - to_hide = comment.deleted? ? hidden : nil
19
19
  - opts = { remote: true, style: to_hide, method: :delete, data: { confirm: t('the_comments.delete_confirm') } }
20
- = link_to [comments, :to_deleted, comment], opts.merge(class: "btn btn-danger to_deleted") do
20
+ = link_to [:to_deleted, comment], opts.merge(class: "btn btn-danger to_deleted") do
21
21
  = t('the_comments.to_deleted')
22
22
 
23
23
  - opts = { remote: true, method: :post}
24
- = link_to [comments, :to_spam, comment], opts.merge(class: "btn btn-danger to_spam") do
24
+ = link_to [:to_spam, comment], opts.merge(class: "btn btn-danger to_spam") do
25
25
  = t('the_comments.to_spam')
26
26
  .col-md-3.text-right
27
27
  = link_to t('the_comments.additional_info'), "#", class: "additional_info btn btn-info"
@@ -8,21 +8,21 @@
8
8
 
9
9
  %h5= t 'the_comments.incoming'
10
10
  %ul
11
- %li= link_to t("the_comments.draft_comments", num: cuser.draft_comcoms_count), [comments, :draft, :comments]
12
- %li= link_to t("the_comments.published_comments", num: cuser.published_comcoms_count), [comments, :published, :comments]
13
- %li= link_to t("the_comments.deleted_comments", num: cuser.deleted_comcoms_count), [comments, :deleted, :comments]
14
- %li= link_to t("the_comments.spam_comments", num: cuser.spam_comcoms_count), [comments, :spam, :comments]
11
+ %li= link_to t("the_comments.draft_comments", num: cuser.draft_comcoms_count), [:draft, :comments]
12
+ %li= link_to t("the_comments.published_comments", num: cuser.published_comcoms_count), [:published, :comments]
13
+ %li= link_to t("the_comments.deleted_comments", num: cuser.deleted_comcoms_count), [:deleted, :comments]
14
+ %li= link_to t("the_comments.spam_comments", num: cuser.spam_comcoms_count), [:spam, :comments]
15
15
 
16
16
  %h5= t 'the_comments.written_by_me'
17
17
  %ul
18
- %li= link_to t("the_comments.draft_comments", num: cuser.my_draft_comments.count), [comments, :my_draft, :comments]
19
- %li= link_to t("the_comments.published_comments", num: cuser.my_published_comments.count), [comments, :my_published, :comments]
20
- %li= link_to t("the_comments.my_comments", num: cuser.my_comments_count), [comments, :my_comments, :comments]
18
+ %li= link_to t("the_comments.draft_comments", num: cuser.my_draft_comments.count), [:my_draft, :comments]
19
+ %li= link_to t("the_comments.published_comments", num: cuser.my_published_comments.count), [:my_published, :comments]
20
+ %li= link_to t("the_comments.my_comments", num: cuser.my_comments_count), [:my_comments, :comments]
21
21
 
22
22
  - if cuser.comments_admin?
23
23
  %h5= t 'the_comments.in_system'
24
24
  %ul
25
- %li= link_to t("the_comments.draft_comments", num: Comment.with_state(:draft).count), [comments, :total_draft, :comments]
26
- %li= link_to t("the_comments.published_comments", num: Comment.with_state(:published).count), [comments, :total_published, :comments]
27
- %li= link_to t("the_comments.deleted_comments", num: Comment.with_state(:deleted).count), [comments, :total_deleted, :comments]
28
- %li= link_to t("the_comments.spam_comments", num: Comment.where(spam: true).count), [comments, :total_spam, :comments]
25
+ %li= link_to t("the_comments.draft_comments", num: Comment.with_state(:draft).count), [:total_draft, :comments]
26
+ %li= link_to t("the_comments.published_comments", num: Comment.with_state(:published).count), [:total_published, :comments]
27
+ %li= link_to t("the_comments.deleted_comments", num: Comment.with_state(:deleted).count), [:total_deleted, :comments]
28
+ %li= link_to t("the_comments.spam_comments", num: Comment.where(spam: true).count), [:total_spam, :comments]
@@ -1,5 +1,5 @@
1
1
  .edit_form style: "display:none"
2
- = form_for [comments, comment], remote: true, html:{ role: :form } do |f|
2
+ = form_for comment, remote: true, html:{ role: :form } do |f|
3
3
  table.table.table-striped.table-hover
4
4
  tr style: "width: 100px;"
5
5
  td
@@ -1,7 +1,7 @@
1
1
  h3
2
2
  = link_to t('the_comments.new'), '#', id: :new_root_comment
3
3
 
4
- = form_for [comments, Comment.new], remote: true, authenticity_token: true do |f|
4
+ = form_for Comment.new, remote: true, authenticity_token: true do |f|
5
5
  .error_notifier style: "display:none"
6
6
  label= t('the_comments.form.title')
7
7
  p= f.text_field :title
@@ -7,21 +7,21 @@
7
7
 
8
8
  - to_hide = comment.published? ? hidden : nil
9
9
  - opts = { remote: true, style: to_hide, method: :post }
10
- = link_to [comments, :to_published, comment], opts.merge(class: "btn btn-primary to_published") do
10
+ = link_to [:to_published, comment], opts.merge(class: "btn btn-primary to_published") do
11
11
  = t('the_comments.to_published')
12
12
 
13
13
  - to_hide = comment.draft? ? hidden : nil
14
14
  - opts = { remote: true, style: to_hide, method: :post }
15
- = link_to [comments, :to_draft, comment], opts.merge(class: "btn btn-warning to_draft") do
15
+ = link_to [:to_draft, comment], opts.merge(class: "btn btn-warning to_draft") do
16
16
  = t('the_comments.to_draft')
17
17
 
18
18
  - to_hide = comment.deleted? ? hidden : nil
19
19
  - opts = { remote: true, style: to_hide, method: :delete, data: { confirm: t('the_comments.delete_confirm') } }
20
- = link_to [comments, :to_deleted, comment], opts.merge(class: "btn btn-danger to_deleted") do
20
+ = link_to [:to_deleted, comment], opts.merge(class: "btn btn-danger to_deleted") do
21
21
  = t('the_comments.to_deleted')
22
22
 
23
23
  - opts = { remote: true, method: :post}
24
- = link_to [comments, :to_spam, comment], opts.merge(class: "btn btn-danger to_spam") do
24
+ = link_to [:to_spam, comment], opts.merge(class: "btn btn-danger to_spam") do
25
25
  = t('the_comments.to_spam')
26
26
  .col-md-3.text-right
27
27
  = link_to t('the_comments.additional_info'), "#", class: "additional_info btn btn-info"
@@ -8,21 +8,21 @@
8
8
 
9
9
  h5= t 'the_comments.incoming'
10
10
  ul
11
- li= link_to t("the_comments.draft_comments", num: cuser.draft_comcoms_count), [comments, :draft, :comments]
12
- li= link_to t("the_comments.published_comments", num: cuser.published_comcoms_count), [comments, :published, :comments]
13
- li= link_to t("the_comments.deleted_comments", num: cuser.deleted_comcoms_count), [comments, :deleted, :comments]
14
- li= link_to t("the_comments.spam_comments", num: cuser.spam_comcoms_count), [comments, :spam, :comments]
11
+ li= link_to t("the_comments.draft_comments", num: cuser.draft_comcoms_count), [:draft, :comments]
12
+ li= link_to t("the_comments.published_comments", num: cuser.published_comcoms_count), [:published, :comments]
13
+ li= link_to t("the_comments.deleted_comments", num: cuser.deleted_comcoms_count), [:deleted, :comments]
14
+ li= link_to t("the_comments.spam_comments", num: cuser.spam_comcoms_count), [:spam, :comments]
15
15
 
16
16
  h5= t 'the_comments.written_by_me'
17
17
  ul
18
- li= link_to t("the_comments.draft_comments", num: cuser.my_draft_comments.count), [comments, :my_draft, :comments]
19
- li= link_to t("the_comments.published_comments", num: cuser.my_published_comments.count), [comments, :my_published, :comments]
20
- li= link_to t("the_comments.my_comments", num: cuser.my_comments_count), [comments, :my_comments, :comments]
18
+ li= link_to t("the_comments.draft_comments", num: cuser.my_draft_comments.count), [:my_draft, :comments]
19
+ li= link_to t("the_comments.published_comments", num: cuser.my_published_comments.count), [:my_published, :comments]
20
+ li= link_to t("the_comments.my_comments", num: cuser.my_comments_count), [:my_comments, :comments]
21
21
 
22
22
  - if cuser.comments_admin?
23
23
  h5= t 'the_comments.in_system'
24
24
  ul
25
- li= link_to t("the_comments.draft_comments", num: Comment.with_state(:draft).count), [comments, :total_draft, :comments]
26
- li= link_to t("the_comments.published_comments", num: Comment.with_state(:published).count), [comments, :total_published, :comments]
27
- li= link_to t("the_comments.deleted_comments", num: Comment.with_state(:deleted).count), [comments, :total_deleted, :comments]
28
- li= link_to t("the_comments.spam_comments", num: Comment.where(spam: true).count), [comments, :total_spam, :comments]
25
+ li= link_to t("the_comments.draft_comments", num: Comment.with_state(:draft).count), [:total_draft, :comments]
26
+ li= link_to t("the_comments.published_comments", num: Comment.with_state(:published).count), [:total_published, :comments]
27
+ li= link_to t("the_comments.deleted_comments", num: Comment.with_state(:deleted).count), [:total_deleted, :comments]
28
+ li= link_to t("the_comments.spam_comments", num: Comment.where(spam: true).count), [:total_spam, :comments]
data/config/routes.rb CHANGED
@@ -1,28 +1,36 @@
1
- TheComments::Engine.routes.draw do
2
- resources :comments do
3
- member do
4
- post :to_spam
5
- post :to_draft
6
- post :to_published
7
- delete :to_deleted
8
- end
1
+ module TheComments
2
+ class UserRoutes
3
+ def call mapper, options = {}
4
+ mapper.collection do
5
+ mapper.get :manage
9
6
 
10
- collection do
11
- get :manage
7
+ mapper.get :my_draft
8
+ mapper.get :my_published
9
+ mapper.get :my_comments
12
10
 
13
- get :my_draft
14
- get :my_published
15
- get :my_comments
11
+ mapper.get :draft
12
+ mapper.get :published
13
+ mapper.get :deleted
14
+ mapper.get :spam
15
+ end
16
16
 
17
- get :total_draft
18
- get :total_published
19
- get :total_deleted
20
- get :total_spam
17
+ mapper.member do
18
+ mapper.post :to_spam
19
+ mapper.post :to_draft
20
+ mapper.post :to_published
21
+ mapper.delete :to_deleted
22
+ end
23
+ end
24
+ end
21
25
 
22
- get :draft
23
- get :published
24
- get :deleted
25
- get :spam
26
+ class AdminRoutes
27
+ def call mapper, options = {}
28
+ mapper.collection do
29
+ mapper.get :total_draft
30
+ mapper.get :total_published
31
+ mapper.get :total_deleted
32
+ mapper.get :total_spam
33
+ end
26
34
  end
27
35
  end
28
36
  end
@@ -140,7 +140,10 @@ MyApp::Application.routes.draw do
140
140
 
141
141
  # ...
142
142
 
143
- mount TheComments::Engine => '/', as: :comments
143
+ # TheComments routes
144
+ concern :user_comments, TheComments::UserRoutes.new
145
+ concern :admin_comments, TheComments::AdminRoutes.new
146
+ resources :comments, concerns: [:user_comments, :admin_comments]
144
147
  end
145
148
  ```
146
149
 
@@ -1,7 +1,7 @@
1
1
  #### INSTALLATION
2
2
  * :white_check_mark: &nbsp; [ADVANCED INSTALLATION](advanced_installation.md)
3
3
  * :white_check_mark: &nbsp; [ADMIN UI INSTALLATION](admin_ui_installation.md)
4
- * :white_check_mark: &nbsp; [Mountable Routing](mountable_routes.md)
4
+ * :white_check_mark: &nbsp; [Routing](routes.md)
5
5
  * :white_check_mark: &nbsp; [Generators](generators.md)
6
6
 
7
7
  #### API
@@ -1,12 +1,6 @@
1
1
  &larr; &nbsp; [documentation](documentation.md)
2
2
 
3
- ## Mountable Routes
4
-
5
- Now gem has mountable routes. It's was not my idea, but guys said - it's very helpful. So, ok!
6
-
7
- You should mount routes to your app.
8
-
9
- :warning: &nbsp; Default views based on **as: :comments** argument. If, you want to change it - you should customize default views.
3
+ ## TheComments Routes
10
4
 
11
5
  **config/routes.rb**
12
6
 
@@ -17,7 +11,10 @@ MyApp::Application.routes.draw do
17
11
 
18
12
  # ...
19
13
 
20
- mount TheComments::Engine => '/', as: :comments
14
+ # TheComments routes
15
+ concern :user_comments, TheComments::UserRoutes.new
16
+ concern :admin_comments, TheComments::AdminRoutes.new
17
+ resources :comments, concerns: [:user_comments, :admin_comments]
21
18
  end
22
19
  ```
23
20
 
@@ -60,21 +57,21 @@ And now you can use url helpers with 2 ways:
60
57
  ### Way 1. Url Helpers
61
58
 
62
59
  ```ruby
63
- = link_to 'link', comments.comments_path
64
- = link_to 'link', comments.manage_comments_path
65
- = link_to 'link', comments.new_comment_path
60
+ = link_to 'link', comments_path
61
+ = link_to 'link', manage_comments_path
62
+ = link_to 'link', new_comment_path
66
63
 
67
- = link_to 'link', comments.comment_path(@comment)
68
- = link_to 'link', comments.to_spam_comment_path(@comment)
64
+ = link_to 'link', comment_path(@comment)
65
+ = link_to 'link', to_spam_comment_path(@comment)
69
66
  ```
70
67
 
71
68
  ### Way 2. Array notation
72
69
 
73
70
  ```ruby
74
- = link_to 'link', [comments, :index]
75
- = link_to 'link', [comments, :manage]
76
- = link_to 'link', [comments, :new]
71
+ = link_to 'link', [:index, :comments]
72
+ = link_to 'link', [:manage, :comments]
73
+ = link_to 'link', [:draft, :comments]
77
74
 
78
- = link_to 'link', [comments, @comment]
79
- = link_to 'link', [comments, :to_spam, @comment]
75
+ = link_to 'link', [@comment]
76
+ = link_to 'link', [:to_spam, @comment]
80
77
  ```
data/gem_version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module TheComments
2
- VERSION = "2.1.0"
2
+ VERSION = "2.2.0"
3
3
  end
data/lib/the_comments.rb CHANGED
@@ -4,16 +4,16 @@ require 'the_sortable_tree'
4
4
  require 'the_comments/config'
5
5
  require 'the_comments/version'
6
6
 
7
+ _root_ = File.expand_path('../../', __FILE__)
8
+
7
9
  module TheComments
8
10
  class Engine < Rails::Engine; end
9
11
  end
10
12
 
11
13
  # Loading of concerns
14
+ require "#{_root_}/config/routes.rb"
15
+ require "#{_root_}/app/controllers/concerns/controller.rb"
12
16
 
13
- # controllers
14
- require File.expand_path('../../app/controllers/concerns/controller.rb', __FILE__)
15
-
16
- # models
17
17
  %w[ comment_states comment user commentable ].each do |concern|
18
- require File.expand_path("../../app/models/concerns/#{concern}.rb", __FILE__)
18
+ require "#{_root_}/app/models/concerns/#{concern}.rb"
19
19
  end
@@ -6,6 +6,7 @@
6
6
 
7
7
  # Ignore bundler config.
8
8
  /.bundle
9
+ .rvmrc
9
10
 
10
11
  # Ignore the default SQLite database.
11
12
  /db/*.db
@@ -0,0 +1 @@
1
+ rvm use ruby-2.0.0-p247@the_comments --create
@@ -12,7 +12,7 @@ gem 'sass-rails', '~> 4.0.0'
12
12
  gem 'coffee-rails', '~> 4.0.0'
13
13
 
14
14
  gem 'thin', group: [:development]
15
- gem 'therubyracer', platforms: :ruby
15
+ # gem 'therubyracer', platforms: :ruby
16
16
  gem 'sdoc', require: false, group: [:doc]
17
17
 
18
18
  # App gems
@@ -14,7 +14,7 @@
14
14
  - if current_user
15
15
  User: #{current_user.username}
16
16
  \|
17
- = link_to "Comments Manage (+#{current_user.draft_comcoms_count})", comments.manage_comments_path
17
+ = link_to "Comments Manage (+#{current_user.draft_comcoms_count})", manage_comments_path
18
18
  - else
19
19
  Guest
20
20
  = yield
@@ -11,5 +11,8 @@ App::Application.routes.draw do
11
11
 
12
12
  resources :posts
13
13
 
14
- mount TheComments::Engine => '/', as: :comments
14
+ # TheComments routes
15
+ concern :user_comments, TheComments::UserRoutes.new
16
+ concern :admin_comments, TheComments::AdminRoutes.new
17
+ resources :comments, concerns: [:user_comments, :admin_comments]
15
18
  end
data/the_comments.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |gem|
10
10
  gem.email = ["zykin-ilya@ya.ru"]
11
11
  gem.description = %q{ Comments with threading for Rails 4 }
12
12
  gem.summary = %q{ the_comments by the-teacher }
13
- gem.homepage = "https://github.com/open-cook/the_comments"
13
+ gem.homepage = "https://github.com/the-teacher/the_comments"
14
14
 
15
15
  gem.files = `git ls-files`.split($/)
16
16
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
metadata CHANGED
@@ -1,43 +1,38 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: the_comments
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.2.0
5
+ prerelease:
5
6
  platform: ruby
6
7
  authors:
7
8
  - Ilya N. Zykin
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2013-11-05 00:00:00.000000000 Z
12
+ date: 2013-11-10 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: state_machine
15
- requirement: !ruby/object:Gem::Requirement
16
+ requirement: &82514850 !ruby/object:Gem::Requirement
17
+ none: false
16
18
  requirements:
17
19
  - - ! '>='
18
20
  - !ruby/object:Gem::Version
19
21
  version: '0'
20
22
  type: :runtime
21
23
  prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - ! '>='
25
- - !ruby/object:Gem::Version
26
- version: '0'
24
+ version_requirements: *82514850
27
25
  - !ruby/object:Gem::Dependency
28
26
  name: the_sortable_tree
29
- requirement: !ruby/object:Gem::Requirement
27
+ requirement: &82514530 !ruby/object:Gem::Requirement
28
+ none: false
30
29
  requirements:
31
30
  - - ! '>='
32
31
  - !ruby/object:Gem::Version
33
32
  version: '0'
34
33
  type: :runtime
35
34
  prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ! '>='
39
- - !ruby/object:Gem::Version
40
- version: '0'
35
+ version_requirements: *82514530
41
36
  description: ! ' Comments with threading for Rails 4 '
42
37
  email:
43
38
  - zykin-ilya@ya.ru
@@ -103,8 +98,8 @@ files:
103
98
  - docs/denormalization_and_recent_comments.md
104
99
  - docs/documentation.md
105
100
  - docs/generators.md
106
- - docs/mountable_routes.md
107
101
  - docs/pagination.md
102
+ - docs/routes.md
108
103
  - docs/screencast.jpg
109
104
  - docs/the_comments.jpg
110
105
  - docs/the_comments_view_1.gif
@@ -127,6 +122,7 @@ files:
127
122
  - spec/dummy_app/.rspec
128
123
  - spec/dummy_app/.ruby-gemset
129
124
  - spec/dummy_app/.ruby-version
125
+ - spec/dummy_app/.rvmrc.example
130
126
  - spec/dummy_app/Gemfile
131
127
  - spec/dummy_app/README.md
132
128
  - spec/dummy_app/Rakefile
@@ -205,34 +201,36 @@ files:
205
201
  - spec/dummy_app/vendor/assets/stylesheets/.keep
206
202
  - the_comments.gemspec
207
203
  - views_converter.rb
208
- homepage: https://github.com/open-cook/the_comments
204
+ homepage: https://github.com/the-teacher/the_comments
209
205
  licenses: []
210
- metadata: {}
211
206
  post_install_message:
212
207
  rdoc_options: []
213
208
  require_paths:
214
209
  - lib
215
210
  required_ruby_version: !ruby/object:Gem::Requirement
211
+ none: false
216
212
  requirements:
217
213
  - - ! '>='
218
214
  - !ruby/object:Gem::Version
219
215
  version: '0'
220
216
  required_rubygems_version: !ruby/object:Gem::Requirement
217
+ none: false
221
218
  requirements:
222
219
  - - ! '>='
223
220
  - !ruby/object:Gem::Version
224
221
  version: '0'
225
222
  requirements: []
226
223
  rubyforge_project:
227
- rubygems_version: 2.0.5
224
+ rubygems_version: 1.8.15
228
225
  signing_key:
229
- specification_version: 4
226
+ specification_version: 3
230
227
  summary: the_comments by the-teacher
231
228
  test_files:
232
229
  - spec/dummy_app/.gitignore
233
230
  - spec/dummy_app/.rspec
234
231
  - spec/dummy_app/.ruby-gemset
235
232
  - spec/dummy_app/.ruby-version
233
+ - spec/dummy_app/.rvmrc.example
236
234
  - spec/dummy_app/Gemfile
237
235
  - spec/dummy_app/README.md
238
236
  - spec/dummy_app/Rakefile
checksums.yaml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- SHA1:
3
- metadata.gz: 1ee632ba5de08ebc509b8bee50ff36a33aad11e2
4
- data.tar.gz: bd13f415bec98398f1a6fb6490aacf90bf8f2ef2
5
- SHA512:
6
- metadata.gz: 19588969de25f0760bbe5a55bf60ee38510248e462f84c1a2cff6e6ee85d3496491f889b123d25d8b50a8da0f870ea868d8ff014dc4bacac7633c81da1352b10
7
- data.tar.gz: afcc6443ea637efd7fda0f0ac74fb292688dad0f3c06dde0d76473eefeda6d65c64197a12126447dc63ea8b0b34ae467535820c66a0af0139845a7530f3e0ef8