message_train 0.2.9 → 0.2.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/message_train.gemspec +2 -4
- data/spec/dummy/db/test.sqlite3 +0 -0
- metadata +2 -4
- data/bin/rails +0 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: decee4e0c9ea1965a48bf2a7d2ccdea9150fcb3e
|
4
|
+
data.tar.gz: bcc2ba68147278062971b4188b9bed4238b4cde4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 62b6a74481815e2f2eb4dbe44ce29d1f4210cc0f7ee3cb86960aa13694ff8fb82a896791535462e823ead1c1cedb1ec1b9e9ae3061c1429e0e7d18609c8d3e25
|
7
|
+
data.tar.gz: a0e245d0b2285bcb71dc331fd2edefde4455b48384bcaf3b3d9d1897a057dac64acad095591ad756afdd0af2290ef93b8a0d3f86bac82ad9c2a897c87da13bc4
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.10
|
data/message_train.gemspec
CHANGED
@@ -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.
|
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
|
+
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",
|
data/spec/dummy/db/test.sqlite3
CHANGED
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.
|
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'
|