tenon 1.1.4 → 1.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/tenon/features/asset_detachment.js.coffee +1 -1
  3. data/app/assets/javascripts/tenon/features/asset_uploader.js.coffee +1 -1
  4. data/app/assets/javascripts/tenon/features/modal_windows.js.coffee +0 -2
  5. data/app/assets/javascripts/tenon/features/nested_fields.js +2 -2
  6. data/app/assets/javascripts/tenon/features/new_item_version_handler.js.coffee +2 -2
  7. data/app/assets/javascripts/tenon/features/protect_changes.js.coffee +1 -1
  8. data/app/assets/javascripts/tenon/features/record_approval.js.coffee +3 -3
  9. data/app/assets/javascripts/tenon/features/record_boolean_toggle.js.coffee +1 -1
  10. data/app/assets/javascripts/tenon/features/record_list.js.coffee +3 -3
  11. data/app/assets/javascripts/tenon/features/record_list_updater.js.coffee +1 -1
  12. data/app/assets/javascripts/tenon/features/tenon_content/asset_link.js.coffee +1 -1
  13. data/app/assets/javascripts/tenon/templates/assets/asset_field.jst.eco +2 -2
  14. data/app/assets/javascripts/tenon/templates/assets/asset_row.jst.eco +2 -2
  15. data/app/assets/javascripts/tenon/templates/assets/asset_select.jst.eco +1 -1
  16. data/app/assets/javascripts/tenon/templates/contacts/contact_row.jst.eco +9 -9
  17. data/app/assets/javascripts/tenon/templates/errors.jst.eco +2 -2
  18. data/app/assets/javascripts/tenon/templates/events/event_row.jst.eco +2 -2
  19. data/app/assets/javascripts/tenon/templates/item_versions/item_version_row.jst.eco +2 -2
  20. data/app/assets/javascripts/tenon/templates/pages/page_row.jst.eco +1 -1
  21. data/app/assets/javascripts/tenon/templates/post_categories/post_category_row.jst.eco +1 -1
  22. data/app/assets/javascripts/tenon/templates/posts/post_row.jst.eco +3 -3
  23. data/app/assets/javascripts/tenon/templates/users/user_row.jst.eco +2 -2
  24. data/app/controllers/tenon/assets_controller.rb +1 -1
  25. data/app/controllers/tenon/base_controller.rb +4 -4
  26. data/app/controllers/tenon/comments_controller.rb +2 -2
  27. data/app/controllers/tenon/contacts_controller.rb +4 -4
  28. data/app/controllers/tenon/resources_controller.rb +3 -3
  29. data/app/decorators/tenon/asset_decorator.rb +3 -3
  30. data/app/decorators/tenon/comment_decorator.rb +1 -1
  31. data/app/decorators/tenon/contact_decorator.rb +2 -2
  32. data/app/decorators/tenon/event_decorator.rb +2 -2
  33. data/app/helpers/tenon/application_helper.rb +6 -0
  34. data/app/helpers/tenon/asset_helper.rb +1 -1
  35. data/app/helpers/tenon/item_version_helper.rb +5 -5
  36. data/app/helpers/tenon/tenon_content_helper.rb +1 -1
  37. data/app/helpers/tenon/tenon_helper.rb +7 -7
  38. data/app/mailers/tenon/comment_mailer.rb +1 -1
  39. data/app/mailers/tenon/contact_mailer.rb +1 -1
  40. data/app/models/tenon/asset.rb +1 -1
  41. data/app/models/tenon/page.rb +3 -3
  42. data/app/models/tenon/tenon_content/row_types.rb +17 -17
  43. data/app/views/layouts/tenon/application.html.haml +4 -0
  44. data/app/views/layouts/tenon/login.html.haml +3 -0
  45. data/app/views/tenon/assets/_form.html.haml +2 -2
  46. data/app/views/tenon/assets/_sidebar_index.html.haml +6 -6
  47. data/app/views/tenon/assets/crop.html.haml +3 -4
  48. data/app/views/tenon/assets/edit.html.haml +1 -1
  49. data/app/views/tenon/assets/index.html.haml +2 -2
  50. data/app/views/tenon/comment_mailer/comment_notification.html.haml +2 -2
  51. data/app/views/tenon/comments/_sidebar_index.html.haml +6 -6
  52. data/app/views/tenon/comments/index.html.haml +2 -2
  53. data/app/views/tenon/comments/index.json.jbuilder +1 -1
  54. data/app/views/tenon/contact_mailer/contact_notification.html.haml +4 -4
  55. data/app/views/tenon/contacts/_sidebar_index.html.haml +8 -8
  56. data/app/views/tenon/contacts/index.html.haml +2 -2
  57. data/app/views/tenon/contacts/index.json.jbuilder +4 -4
  58. data/app/views/tenon/events/_form.html.haml +7 -7
  59. data/app/views/tenon/events/edit.html.haml +1 -1
  60. data/app/views/tenon/events/index.html.haml +4 -4
  61. data/app/views/tenon/events/index.json.jbuilder +1 -1
  62. data/app/views/tenon/events/new.html.haml +1 -1
  63. data/app/views/tenon/fields/_asset.html.haml +3 -3
  64. data/app/views/tenon/galleries/_form.html.haml +7 -7
  65. data/app/views/tenon/galleries/edit.html.haml +1 -1
  66. data/app/views/tenon/galleries/index.html.haml +5 -5
  67. data/app/views/tenon/galleries/new.html.haml +1 -1
  68. data/app/views/tenon/index/index.html.haml +4 -4
  69. data/app/views/tenon/item_assets/new.html.haml +6 -6
  70. data/app/views/tenon/item_versions/_item_version.json.jbuilder +4 -4
  71. data/app/views/tenon/item_versions/index.html.haml +2 -5
  72. data/app/views/tenon/item_versions/new.html.haml +1 -1
  73. data/app/views/tenon/pages/_form.html.haml +14 -14
  74. data/app/views/tenon/pages/edit.html.haml +1 -1
  75. data/app/views/tenon/pages/index.html.haml +5 -5
  76. data/app/views/tenon/pages/index.json.jbuilder +4 -4
  77. data/app/views/tenon/pages/new.html.haml +1 -1
  78. data/app/views/tenon/post_categories/_form.html.haml +1 -1
  79. data/app/views/tenon/post_categories/_post_category.json.jbuilder +1 -1
  80. data/app/views/tenon/post_categories/index.html.haml +5 -5
  81. data/app/views/tenon/posts/_form.html.haml +14 -14
  82. data/app/views/tenon/posts/edit.html.haml +1 -1
  83. data/app/views/tenon/posts/index.html.haml +6 -6
  84. data/app/views/tenon/posts/index.json.jbuilder +2 -2
  85. data/app/views/tenon/posts/new.html.haml +1 -1
  86. data/app/views/tenon/redirects/_form.html.haml +10 -10
  87. data/app/views/tenon/redirects/_redirect.json.jbuilder +1 -1
  88. data/app/views/tenon/redirects/edit.html.haml +1 -1
  89. data/app/views/tenon/redirects/index.html.haml +8 -8
  90. data/app/views/tenon/redirects/new.html.haml +1 -1
  91. data/app/views/tenon/settings/_contact.html.haml +8 -8
  92. data/app/views/tenon/settings/_general.html.haml +4 -4
  93. data/app/views/tenon/settings/_seo.html.haml +4 -4
  94. data/app/views/tenon/settings/show.html.haml +9 -9
  95. data/app/views/tenon/shared/_i18n_language_nav.html.haml +3 -3
  96. data/app/views/tenon/shared/_main_nav.html.haml +11 -11
  97. data/app/views/tenon/shared/_posts_nav.html.haml +3 -3
  98. data/app/views/tenon/shared/_seo_fields.html.haml +3 -3
  99. data/app/views/tenon/shared/_util_nav.html.haml +2 -2
  100. data/app/views/tenon/shared/_version_warning.html.haml +5 -6
  101. data/app/views/tenon/shared/menu_items/_comments.html.haml +1 -1
  102. data/app/views/tenon/shared/menu_items/_events.html.haml +2 -2
  103. data/app/views/tenon/shared/menu_items/_galleries.html.haml +2 -2
  104. data/app/views/tenon/shared/menu_items/_pages.html.haml +2 -2
  105. data/app/views/tenon/shared/menu_items/_posts.html.haml +2 -2
  106. data/app/views/tenon/shared/section_header/_quick_search.html.haml +1 -1
  107. data/app/views/tenon/tenon_callouts/_form.html.haml +7 -9
  108. data/app/views/tenon/tenon_callouts/edit.html.haml +1 -1
  109. data/app/views/tenon/tenon_callouts/index.html.haml +5 -5
  110. data/app/views/tenon/tenon_callouts/new.html.haml +1 -1
  111. data/app/views/tenon/tenon_content/_builder.html.haml +2 -2
  112. data/app/views/tenon/tenon_content/_display.html.haml +3 -3
  113. data/app/views/tenon/tenon_content/_embed_modal.html.haml +3 -3
  114. data/app/views/tenon/tenon_content/_fields.html.haml +9 -10
  115. data/app/views/tenon/tenon_content/_row.html.haml +4 -4
  116. data/app/views/tenon/tenon_content/piece_types/form/_background_image.html.haml +6 -6
  117. data/app/views/tenon/tenon_content/piece_types/form/_embedded_content.html.haml +1 -2
  118. data/app/views/tenon/tenon_content/piece_types/form/_image.html.haml +17 -17
  119. data/app/views/tenon/users/_form.html.haml +11 -11
  120. data/app/views/tenon/users/edit.html.haml +1 -1
  121. data/app/views/tenon/users/index.html.haml +5 -5
  122. data/app/views/tenon/users/index.json.jbuilder +3 -3
  123. data/app/views/tenon/users/new.html.haml +1 -1
  124. data/config/locales/tenon.en.yml +313 -0
  125. data/lib/tenon/version.rb +1 -1
  126. metadata +4 -4
  127. data/app/models/tenon/thinger.rb +0 -4
@@ -0,0 +1,313 @@
1
+ en:
2
+ tenon:
3
+ common:
4
+ save: Save
5
+ please_wait: Please wait...
6
+ edit: Edit
7
+ are_you_sure: Are you sure? There is no undo for this!
8
+ delete: Delete
9
+ filter: Filter
10
+ all: All
11
+ approve: Approve
12
+ unapprove: Unapprove
13
+ unapproved: Unapproved
14
+ approved: Approved
15
+ publish: Publish
16
+ browse: Browse
17
+ publish_date: Publish Date
18
+ view_on_site: View on Site
19
+ edit_options: Edit Options
20
+ search_optimization: Search Optimization
21
+ details: Details
22
+ active: Actions
23
+ search: Search
24
+ languages: Languages
25
+ english: English
26
+ home: Home
27
+ for_an_optimal_tenon_experience: "For an optimal Tenon experience, please upgrade Internet Explorer to the %{latest_version} or switch to another %{modern_browser}."
28
+ mobile: Mobile
29
+ at: at
30
+ there_were_problems_with_the_following_fields: There were problems with the following fields
31
+ saved_successfully: saved successfully
32
+ you_are_not_authorized: You are not authorized to access that page.
33
+ youre_not_authorized_for_that: You're not authorized for that.
34
+ new: New
35
+ loading: Loading...
36
+ you_have_unsaved_changes: You have unsaved changes, are you sure you want to leave this page?
37
+ the_following_errors_occurred: The following errors occurred
38
+
39
+ assets:
40
+ enter_a_title_for_your_asset: Enter a title for your asset. You can leave this blank to just use the file name as the title.
41
+ multiple_assets: If you upload multiple assets a numerical series will be created.
42
+ choose_file: Choose File
43
+ choose_files: Choose Files
44
+ choose_another_file: Choose Another File
45
+ asset_library: Asset Library
46
+ upload_new: Upload New
47
+ upload_assets: Upload Assets
48
+ file_types: File Types
49
+ all_assets: All Assets
50
+ images: Images
51
+ documents: Documents
52
+ crop: Crop
53
+ create_new_asset_from_crop: Create New Asset From Crop?
54
+ load_more: Load More Assets
55
+ edit_asset: Edit Asset
56
+ size: Size
57
+ asset: Asset
58
+ successfully_uploaded: Asset was successfully uploaded.
59
+ download: Download
60
+ in_use: This asset has been attached to items in your site and can't be deleted.
61
+ from_your_computer: From Your Computer
62
+ from_the_asset_library: From the Asset Library
63
+ filter_assets: Filter Assets
64
+ asset_link: Asset Link
65
+ no_asset_selected: No asset selected.
66
+
67
+ comment_mailer:
68
+ a_new_comment_has_been_added: A new comment has been added to
69
+
70
+ comments:
71
+ comments: Comments
72
+ load_more: Load More Comments
73
+ read: Read
74
+ read_comment: Read Comment
75
+ new_comment: New Comment
76
+ comment_approved: Comment Approved
77
+ error_approving_comment: Error approving comment.
78
+
79
+ contact_mailer:
80
+ new_contact_request_received: A new contact request has been recieved.
81
+ reply_to_this_email: Reply to this email to get in touch with the person who sent it.
82
+ from: From
83
+ email: Email
84
+ new_contact_request: New Contact Request
85
+ sent_on: Sent on
86
+ name: Name
87
+ phone: Phone
88
+ ip: IP
89
+ agent: Agent
90
+ referrer: Referrer
91
+
92
+ contacts:
93
+ contacts: Contacts
94
+ unread: Unread
95
+ read: Read
96
+ awaiting_reply: Awaiting reply
97
+ replied: Replied
98
+ load_more: Load More Contacts
99
+ view_contact_details: View Contact Details
100
+ contact_details: Contact Details
101
+ mark_as_unread: Mark as Unread
102
+ mark_as_read: Mark as Read
103
+ mark_as_pending: Mark as Pending
104
+ mark_as_replied: Mark as Replied
105
+ contact_flagged_as_read: Cotact flagged as read.
106
+ error_flagging_contact_as_read: Error flagging contact as read.
107
+ contact_flagged_as_replied: Contact flagged as replied.
108
+ error_flagging_contact_as_replied: Error flagging contact as replied.
109
+
110
+ events:
111
+ events: Events
112
+ new_event: New Event
113
+ event_details: Event Details
114
+ publish_your_event: Publish Your Event
115
+ editing_event: Editing Event
116
+ load_more: Load More Events
117
+ create_a_new_event: Create a New Event
118
+ from: from
119
+ until: until
120
+ when: When
121
+ where: Where
122
+
123
+ fields:
124
+ remove: remove
125
+ select: Select
126
+
127
+ galleries:
128
+ galleries: Galleries
129
+ new_gallery: New Gallery
130
+ add_another_photo: Add another photo
131
+ add_several: Add several
132
+ load_more: Load More Galleries
133
+
134
+ index:
135
+ notifications: Notifications
136
+ some_items_need_your_attention: Some items need your attention!
137
+ welcome_to_tenon: Welcome to Tenon
138
+
139
+ item_versions:
140
+ no_title: (No Title)
141
+ view_draft: View Draft
142
+ choose_a_draft: Choose a draft to load from the list below. Loading a draft will open it but it will not overwrite the active version of your item until you press Save.
143
+ load_other_drafts: Load Older Drafts
144
+ load_active_version: Load Active Version
145
+ load_draft: Load Draft
146
+ save_draft: Save Draft
147
+ you_are_viewing_a_draft: You are viewing a draft version of this resource. Hitting save will replace the active version with this version.
148
+ auto_saving_is_disabled: Auto-saving is disabled when you are viewing a draft version.
149
+ draft: Draft
150
+ was_created_on: was created on
151
+ by: by
152
+ post_save: Post-Save
153
+ failed_to_save_draft: Failed to save draft.
154
+ created: Created
155
+ creator: Creator
156
+
157
+ pages:
158
+ pages: Pages
159
+ page_content: Page Content
160
+ this_is_the_title: This is the title that shows up at the top of your page.
161
+ parent_page: Parent Page
162
+ no_parent: (No Parent)
163
+ show_in_menu: Show in Menu?
164
+ show_contact_form: Show Contact Form?
165
+ publish_your_page: Publish Your Page
166
+ edit_a_page: Edit a Page
167
+ new_page: New Page
168
+ load_more: Load More Pages
169
+ unknown_user: Unknown User
170
+ create_a_sub_page: Create a Sub-Page
171
+ required_page: Required Page, Can't Delete
172
+ create_a_new_page: Create a New Page
173
+ must_exist_in_order_to_have: must exist in order to have a properly generated URL.
174
+ theres_already_something_happening: "There's already something happening at %{path}. Try giving the page a different name."
175
+ cannot_be_itself_or_one_of_its_subpages: cannot be itself or one of its subpages.
176
+ last_updated: Last Updated
177
+
178
+ post_categories:
179
+ post_categories: Post Categories
180
+ edit_post_category: Edit Post Category
181
+ new_post_category: New Post Category
182
+ load_more: Load More Post Categories
183
+
184
+ posts:
185
+ posts: Posts
186
+ post_content: Post Content
187
+ give_your_post_a_title: Give your post a title.
188
+ categories: Categories
189
+ publish_your_post: Publish Your Post
190
+ author: Author
191
+ no_author: (No Author)
192
+ allow_comments: Allow Comments?
193
+ edit_a_post: Edit a Post
194
+ new_post: New Post
195
+ load_more: Load More Posts
196
+ date_not_set: Date not set
197
+ create_a_new_post: Create a New Post
198
+ published: Published
199
+
200
+ redirects:
201
+ redirects: Redirects
202
+ new_redirect: New Redirect
203
+ redirects_will_be_run: Redirects will be run when a page cannot be found. It will not redirect an existing page.
204
+ route_to_match: Route to match
205
+ string_can_be_written: "String, can be written as a regular expression (without opening and closing /)"
206
+ destination: Destination
207
+ zero_indexed_captures: "Zero-indexed captures can be returned in {x}"
208
+ active: Active
209
+ not_active: Not Active
210
+ edit_redirect: Edit Redirect
211
+ drag_and_drop_to_set_priority: Drag and drop to set priority.
212
+ load_more: Load More Redirects
213
+
214
+ settings:
215
+ contact_details: Contact Details
216
+ contact_email: Contact Email
217
+ destination_email_address_for_alerts: Destination email address for alerts. Separate multiple email addresses with commas.
218
+ sender_email: Sender Email
219
+ from_email_address_for_alerts: \"From\" email address for alerts.
220
+ comment_notifications: Comment Notifications
221
+ comment_email: Comment Email
222
+ do_you_want_to_receive: Do you want to receive an email when someone posts a comment?
223
+ site_name: Site Name
224
+ site_domain: Site Domain
225
+ google_analytics_code: Google Analytics Code
226
+ create_a_new_profile_here: Create a New Profile Here
227
+ meta_keywords: META Keywords
228
+ these_meta_keywords_will: "These META keywords will be used by some search engines when crawling your site. Separate keywords with a comma. Note: Google does not factor in keywords when calculating your rank. Other search engines may or may not."
229
+ meta_description: META Description
230
+ this_description_will_show_up: "This description will show up on search engines and in some cases will affect your rank. It should be no longer than 150-160 characters (about the length of a tweet.)"
231
+ settings: Settings
232
+ sections: Sections
233
+ general_settings: General Settings
234
+ contact_management: Contact Management
235
+ site_settings: Site Settings
236
+ title_tag: Title Tag
237
+ this_is_the_title_that_will_show: "This is the title that will show on search engine results and in the title bar of a visitor's browser. By default, this will use the item's title."
238
+
239
+ users:
240
+ users: Users
241
+ new_user: New User
242
+ edit_info: Edit Info
243
+ sign_out: Sign Out
244
+ new_password: New Password
245
+ confirm_new_password: Confirm New Password
246
+ confirm_password: Confirm Password
247
+ roles: Roles
248
+ roles_define_a_users_abilities: Roles define a user's abilities throughout the site.
249
+ approved: Approved?
250
+ edit_a_user: Edit a User
251
+ load_more: Load More Users
252
+ never: Never
253
+ are_you_sure_you_want_to_unapprove: Are you sure you want to unapprove this user?
254
+ are_you_sure_the_user_will_be_notified: Are you sure? The user will be notified by email.
255
+ last_login: Last Login
256
+
257
+ tenon_callouts:
258
+ tenon_callouts: Tenon Callouts
259
+ new_tenon_callout: New Tenon Callout
260
+ open_in_new_window: Open in New Window
261
+ edit_a_tenon_callout: Edit a Tenon Callout
262
+ load_more: Load More Callouts
263
+
264
+ tenon_content:
265
+ select_image: Select Image
266
+ add_image: Add Image
267
+ replace_image: Replace Image
268
+ edit_embed_code: Edit Embed Code
269
+ enter_caption_here: Enter caption here...
270
+ link_to_an_asset: Link to an Asset
271
+ paste_or_type_a_link: Paste or type a link
272
+ cancel: Cancel
273
+ grow: Grow
274
+ shrink: Shrink
275
+ toggle_caption: Toggle Caption
276
+ swap_sides: Swap Sides
277
+ stretch_to_fill: Stretch to Fill
278
+ add_link: Add Link
279
+ paste_your_embed_code_here: Paste your embed code here
280
+ note_in_order_to_get_your_embed_to_work: "Note: In order to get your embed to work with various screen sizes, you may want to get a code from"
281
+ update: Update
282
+ select_rows_from_the_library: Select rows from the library to build this section.
283
+ you_can_format_your_text: You can format your text by highlighting it and selecting options from the pop-up menu.
284
+ edit_in_preview_mode: Edit in Preview Mode
285
+ add_content: Add Content
286
+ preview_mode: Preview Mode
287
+ use_preview_mode_to_see: "Use preview mode to see how your content will look on different devices. You can still make edits when you're in preview mode, but the toolbars are hidden to give you a better picture of how your content will be laid out."
288
+ done: Done
289
+ insert_content: Insert Content
290
+
291
+ row_types:
292
+ one_column_of_text: One Column of Text
293
+ one_column_image: One Column Image
294
+ two_columns_of_text: Two Columns of Text
295
+ two_images: Two Images
296
+ three_columns_of_text: Three Columns of Text
297
+ three_images: Three Images
298
+ four_columns_of_text: Four Columns of Text
299
+ four_images: Four Images
300
+ wrapped_image_with_text: Wrapped Image with Text
301
+ six_images: Six Images
302
+ embedded_content: Embedded Content
303
+ image_and_text_no_wrap: Image and Text (No Wrap)
304
+ two_column_image_and_text: Two Column Image and Text
305
+ three_column_image_and_text: Three Column Image and Text
306
+ four_column_image_and_text: Four Column Image and Text
307
+ six_column_image_and_text: Six Column Image and Text
308
+ two_columns_with_background_image: Two Columns with Background Image
309
+
310
+ record_list:
311
+ no_entries_found: No entries found.
312
+ there_was_an_error_contacting_the_server: There was an error contacting the server.
313
+
data/lib/tenon/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Tenon
2
- VERSION = '1.1.4'
2
+ VERSION = '1.1.5'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tenon
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.4
4
+ version: 1.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - factor[e] design initiative
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-15 00:00:00.000000000 Z
11
+ date: 2016-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: better_errors
@@ -1135,7 +1135,6 @@ files:
1135
1135
  - app/models/tenon/tenon_content/row_types/two_column_image_and_text.rb
1136
1136
  - app/models/tenon/tenon_content/row_types/two_column_text.rb
1137
1137
  - app/models/tenon/tenon_content/row_types/two_column_with_background_image.rb
1138
- - app/models/tenon/thinger.rb
1139
1138
  - app/models/tenon/user.rb
1140
1139
  - app/services/tenon/redirector.rb
1141
1140
  - app/views/devise/confirmations/new.html.erb
@@ -1302,6 +1301,7 @@ files:
1302
1301
  - config/initializers/inflectors.rb
1303
1302
  - config/initializers/tenon.rb
1304
1303
  - config/locales/devise.en.yml
1304
+ - config/locales/tenon.en.yml
1305
1305
  - config/routes.rb
1306
1306
  - db/migrate/20140312205043_create_tenon_tables.rb
1307
1307
  - db/migrate/20140312232701_create_taggings.rb
@@ -1540,7 +1540,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1540
1540
  version: '0'
1541
1541
  requirements: []
1542
1542
  rubyforge_project:
1543
- rubygems_version: 2.4.5.1
1543
+ rubygems_version: 2.6.3
1544
1544
  signing_key:
1545
1545
  specification_version: 4
1546
1546
  summary: A highly flexible mountable Rails CMS built for rapid application development.
@@ -1,4 +0,0 @@
1
- module Tenon
2
- class Thinger < ActiveRecord::Base
3
- end
4
- end