message_train 0.2.9 → 0.2.10

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d2da49ed6a3eaf7be11b5d468904519bf4007d46
4
- data.tar.gz: 65ccff1aea5c2edef23e6ae3773a0994301edfa6
3
+ metadata.gz: decee4e0c9ea1965a48bf2a7d2ccdea9150fcb3e
4
+ data.tar.gz: bcc2ba68147278062971b4188b9bed4238b4cde4
5
5
  SHA512:
6
- metadata.gz: c59833c4cde589a6d9d5676ed1db76a232256d8712ebcfaf4752f00e94ca83bee250b4b0f6aa57837f84bce509ab89e34bba71882f9bf14ad1cab9e0a938a1f2
7
- data.tar.gz: a24e51aa2465daab47a565828b30381ce97f7dee2de3f3565d5d9b14437e3849b43458d857b59cdd00770175f9c780f5ebb7f5b0baa25dd35ec0a29edffa3ff9
6
+ metadata.gz: 62b6a74481815e2f2eb4dbe44ce29d1f4210cc0f7ee3cb86960aa13694ff8fb82a896791535462e823ead1c1cedb1ec1b9e9ae3061c1429e0e7d18609c8d3e25
7
+ data.tar.gz: a0e245d0b2285bcb71dc331fd2edefde4455b48384bcaf3b3d9d1897a057dac64acad095591ad756afdd0af2290ef93b8a0d3f86bac82ad9c2a897c87da13bc4
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.9
1
+ 0.2.10
@@ -2,11 +2,11 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: message_train 0.2.9 ruby lib
5
+ # stub: message_train 0.2.10 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "message_train"
9
- s.version = "0.2.9"
9
+ s.version = "0.2.10"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
@@ -14,7 +14,6 @@ Gem::Specification.new do |s|
14
14
  s.date = "2016-01-11"
15
15
  s.description = "Rails 4 Engine providing private/public messaging for any object, such as Users or Groups"
16
16
  s.email = "karen.e.lundgren@gmail.com"
17
- s.executables = ["rails"]
18
17
  s.extra_rdoc_files = [
19
18
  "LICENSE.txt",
20
19
  "README.rdoc"
@@ -93,7 +92,6 @@ Gem::Specification.new do |s|
93
92
  "app/views/message_train/participants/show.json.jbuilder",
94
93
  "app/views/message_train/receipt_mailer/notification_email.html.haml",
95
94
  "app/views/message_train/unsubscribes/index.html.haml",
96
- "bin/rails",
97
95
  "config/environment.rb",
98
96
  "config/initializers/bootstrap_pager_config.rb",
99
97
  "config/initializers/date_time.rb",
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: message_train
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.9
4
+ version: 0.2.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Karen Lundgren
@@ -405,8 +405,7 @@ dependencies:
405
405
  description: Rails 4 Engine providing private/public messaging for any object, such
406
406
  as Users or Groups
407
407
  email: karen.e.lundgren@gmail.com
408
- executables:
409
- - rails
408
+ executables: []
410
409
  extensions: []
411
410
  extra_rdoc_files:
412
411
  - LICENSE.txt
@@ -485,7 +484,6 @@ files:
485
484
  - app/views/message_train/participants/show.json.jbuilder
486
485
  - app/views/message_train/receipt_mailer/notification_email.html.haml
487
486
  - app/views/message_train/unsubscribes/index.html.haml
488
- - bin/rails
489
487
  - config/environment.rb
490
488
  - config/initializers/bootstrap_pager_config.rb
491
489
  - config/initializers/date_time.rb
data/bin/rails DELETED
@@ -1,12 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # This command will automatically be run when you run "rails" with Rails 4 gems installed from the root of your application.
3
-
4
- ENGINE_ROOT = File.expand_path('../..', __FILE__)
5
- ENGINE_PATH = File.expand_path('../../lib/message_train/engine', __FILE__)
6
-
7
- # Set up gems listed in the Gemfile.
8
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
9
- require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
10
-
11
- require 'rails/all'
12
- require 'rails/engine/commands'