tramway-core 0.1.0.3 → 0.1.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +12 -19
  4. data/Rakefile +34 -4
  5. data/app/assets/config/tramway_core_manifest.js +2 -0
  6. data/app/assets/javascripts/tramway/core/application.js +13 -0
  7. data/app/assets/javascripts/tramway/core/web/application.js +2 -0
  8. data/app/assets/stylesheets/tramway/core/application.css.sass +6 -0
  9. data/app/controllers/tramway/core/application_controller.rb +7 -0
  10. data/app/controllers/tramway/core/web/application_controller.rb +4 -0
  11. data/app/forms/tramway/core/application_form.rb +8 -0
  12. data/app/helpers/tramway/core/application_helper.rb +6 -0
  13. data/app/helpers/tramway/core/web/application_helper.rb +4 -0
  14. data/app/jobs/tramway/core/application_job.rb +6 -0
  15. data/app/mailers/tramway/core/application_mailer.rb +8 -0
  16. data/app/models/tramway/core/application_record.rb +7 -0
  17. data/app/views/layouts/tramway/core/application.html.erb +14 -0
  18. data/config/routes.rb +2 -0
  19. data/lib/tasks/tramway/core_tasks.rake +4 -0
  20. data/lib/tramway/core.rb +3 -2
  21. data/lib/tramway/core/engine.rb +7 -0
  22. data/lib/tramway/core/generators/install_generator.rb +12 -0
  23. data/lib/tramway/core/generators/templates/initializers/simple_form.rb +22 -0
  24. data/lib/tramway/core/generators/templates/initializers/simple_form_bootstrap.rb +133 -0
  25. data/lib/tramway/core/version.rb +1 -1
  26. metadata +36 -38
  27. data/.gitignore +0 -12
  28. data/.rspec +0 -3
  29. data/.travis.yml +0 -5
  30. data/Gemfile +0 -6
  31. data/bin/console +0 -14
  32. data/bin/setup +0 -8
  33. data/lib/tramway/core/web.rb +0 -4
  34. data/lib/tramway/core/web/application_controller.rb +0 -9
  35. data/tramway-core.gemspec +0 -26
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4207fb4de6317d7b9644e3e7153bdbbc221c61b6
4
- data.tar.gz: af1b893d344ce411c4f62642feaa063deb0515d0
3
+ metadata.gz: e709b036766d7a01f92253914862034eed4301e2
4
+ data.tar.gz: 7fece4bf9945deee77ecbcf67ab5ed8ada854ae3
5
5
  SHA512:
6
- metadata.gz: bc7a255c07f159054460240ca6eb1254ed0e31b38442fb361c84644fc31bcf26a166aa67675ae626cbed9c043d662bd7b292967d42d03c74f225beb06780e795
7
- data.tar.gz: d8043f50b2c7ab21d6ea334b6571fa9a8dec77b872b49d40409e1791087fd7a49ebf407c3d34c8a8bc46d1f4bee965bc6a05cd2ff0cf9fe3fb4e5fcfe208998b
6
+ metadata.gz: aedf05dbb92dd481a5cd56565a5e0d2e4d18f765b23629efbbfebeca51afa8800fb7d732b9c555bb4d4fa642e15854bf730f0d0878e290d55df4303e7a352e2f
7
+ data.tar.gz: 44e8d4861ae6da3589de4cd76d8f7344437c4ba5db3dda7fb57a11d1e9c55a660e18768127979f8c96501df0d39d4c1ce6ec559b41cd3eddd7e97d2407279d72
@@ -0,0 +1,20 @@
1
+ Copyright 2017 Pavel Kalashnikov
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -1,11 +1,10 @@
1
1
  # Tramway::Core
2
+ Short description and motivation.
2
3
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/tramway/core`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
4
+ ## Usage
5
+ How to use my plugin.
6
6
 
7
7
  ## Installation
8
-
9
8
  Add this line to your application's Gemfile:
10
9
 
11
10
  ```ruby
@@ -13,23 +12,17 @@ gem 'tramway-core'
13
12
  ```
14
13
 
15
14
  And then execute:
16
-
17
- $ bundle
15
+ ```bash
16
+ $ bundle
17
+ ```
18
18
 
19
19
  Or install it yourself as:
20
-
21
- $ gem install tramway-core
22
-
23
- ## Usage
24
-
25
- TODO: Write usage instructions here
26
-
27
- ## Development
28
-
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
-
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
20
+ ```bash
21
+ $ gem install tramway-core
22
+ ```
32
23
 
33
24
  ## Contributing
25
+ Contribution directions go here.
34
26
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/tramway-core.
27
+ ## License
28
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile CHANGED
@@ -1,6 +1,36 @@
1
- require "bundler/gem_tasks"
2
- require "rspec/core/rake_task"
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
3
6
 
4
- RSpec::Core::RakeTask.new(:spec)
7
+ require 'rdoc/task'
5
8
 
6
- task :default => :spec
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'Tramway::Core'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.md')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+ APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
18
+ load 'rails/tasks/engine.rake'
19
+
20
+
21
+ load 'rails/tasks/statistics.rake'
22
+
23
+
24
+
25
+ require 'bundler/gem_tasks'
26
+
27
+ require 'rake/testtask'
28
+
29
+ Rake::TestTask.new(:test) do |t|
30
+ t.libs << 'test'
31
+ t.pattern = 'test/**/*_test.rb'
32
+ t.verbose = false
33
+ end
34
+
35
+
36
+ task default: :test
@@ -0,0 +1,2 @@
1
+ //= link_directory ../javascripts/tramway/core .js
2
+ //= link_directory ../stylesheets/tramway/core .css
@@ -0,0 +1,13 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file. JavaScript code in this file should be added after the last require_* statement.
9
+ //
10
+ // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree .
@@ -0,0 +1,2 @@
1
+ // Place all the behaviors and hooks related to the matching controller here.
2
+ // All this logic will automatically be available in application.js.
@@ -0,0 +1,6 @@
1
+ /*
2
+ *= require_tree .
3
+ *= require_self
4
+ */
5
+
6
+ @import "bootstrap"
@@ -0,0 +1,7 @@
1
+ module Tramway
2
+ module Core
3
+ class ApplicationController < ActionController::Base
4
+ protect_from_forgery with: :exception
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,4 @@
1
+ require_dependency "tramway/core/application_controller"
2
+
3
+ class Tramway::Core::Web::ApplicationController < ApplicationController
4
+ end
@@ -0,0 +1,8 @@
1
+ module Tramway::Core
2
+ class ApplicationForm < ::Reform::Form
3
+ def submit(params)
4
+ raise 'ApplicationForm::Params should not be nil'.inspect unless params
5
+ save if validate params
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,6 @@
1
+ module Tramway
2
+ module Core
3
+ module ApplicationHelper
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,4 @@
1
+ module Tramway::Core
2
+ module Web::ApplicationHelper
3
+ end
4
+ end
@@ -0,0 +1,6 @@
1
+ module Tramway
2
+ module Core
3
+ class ApplicationJob < ActiveJob::Base
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,8 @@
1
+ module Tramway
2
+ module Core
3
+ class ApplicationMailer < ActionMailer::Base
4
+ default from: 'from@example.com'
5
+ layout 'mailer'
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,7 @@
1
+ module Tramway
2
+ module Core
3
+ class ApplicationRecord < ActiveRecord::Base
4
+ self.abstract_class = true
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Tramway core</title>
5
+ <%= stylesheet_link_tag "tramway/core/application", media: "all" %>
6
+ <%= javascript_include_tag "tramway/core/application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,2 @@
1
+ Tramway::Core::Engine.routes.draw do
2
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :tramway_core do
3
+ # # Task goes here
4
+ # end
@@ -1,7 +1,8 @@
1
- require 'tramway/core/version'
2
- require 'tramway/core/web'
1
+ require "tramway/core/engine"
2
+ require 'tramway/core/generators/install_generator'
3
3
 
4
4
  module Tramway
5
5
  module Core
6
+ # Your code goes here...
6
7
  end
7
8
  end
@@ -0,0 +1,7 @@
1
+ module Tramway
2
+ module Core
3
+ class Engine < ::Rails::Engine
4
+ isolate_namespace Tramway::Core
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,12 @@
1
+ require 'rails/generators'
2
+
3
+ module Tramway::Core::Generators
4
+ class InstallGenerator < ::Rails::Generators::Base
5
+ source_root File.expand_path('../templates', __FILE__)
6
+
7
+ def copy_initializer
8
+ copy_file "/#{File.dirname __dir__}/generators/templates/initializers/simple_form.rb", 'config/initializers/simple_form.rb'
9
+ copy_file "/#{File.dirname __dir__}/generators/templates/initializers/simple_form_bootstrap.rb", 'config/initializers/simple_form_bootstrap.rb'
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+ SimpleForm.setup do |config|
3
+ config.wrappers :default, class: :input,
4
+ hint_class: :field_with_hint, error_class: :field_with_errors do |b|
5
+ b.use :html5
6
+ b.use :placeholder
7
+ b.optional :maxlength
8
+ b.optional :pattern
9
+ b.optional :min_max
10
+ b.optional :readonly
11
+ b.use :label_input
12
+ b.use :hint, wrap_with: { tag: :span, class: :hint }
13
+ b.use :error, wrap_with: { tag: :span, class: :error }
14
+ end
15
+ config.default_wrapper = :default
16
+ config.boolean_style = :nested
17
+ config.button_class = 'btn'
18
+ config.error_notification_tag = :div
19
+ config.error_notification_class = 'error_notification'
20
+ config.browser_validations = false
21
+ config.boolean_label_class = 'checkbox'
22
+ end
@@ -0,0 +1,133 @@
1
+ # frozen_string_literal: true
2
+
3
+ SimpleForm.setup do |config|
4
+ config.error_notification_class = 'alert alert-danger'
5
+ config.button_class = 'btn btn-default'
6
+ config.boolean_label_class = nil
7
+
8
+ config.wrappers :vertical_form, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
9
+ b.use :html5
10
+ b.use :placeholder
11
+ b.optional :maxlength
12
+ b.optional :pattern
13
+ b.optional :min_max
14
+ b.optional :readonly
15
+ b.use :label, class: 'control-label'
16
+
17
+ b.use :input, class: 'form-control'
18
+ b.use :error, wrap_with: { tag: 'span', class: 'help-block' }
19
+ b.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
20
+ end
21
+
22
+ config.wrappers :vertical_file_input, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
23
+ b.use :html5
24
+ b.use :placeholder
25
+ b.optional :maxlength
26
+ b.optional :readonly
27
+ b.use :label, class: 'control-label'
28
+
29
+ b.use :input
30
+ b.use :error, wrap_with: { tag: 'span', class: 'help-block' }
31
+ b.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
32
+ end
33
+
34
+ config.wrappers :vertical_boolean, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
35
+ b.use :html5
36
+ b.optional :readonly
37
+
38
+ b.wrapper tag: 'div', class: 'checkbox' do |ba|
39
+ ba.use :label_input
40
+ end
41
+
42
+ b.use :error, wrap_with: { tag: 'span', class: 'help-block' }
43
+ b.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
44
+ end
45
+
46
+ config.wrappers :vertical_radio_and_checkboxes, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
47
+ b.use :html5
48
+ b.optional :readonly
49
+ b.use :label, class: 'control-label'
50
+ b.use :input
51
+ b.use :error, wrap_with: { tag: 'span', class: 'help-block' }
52
+ b.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
53
+ end
54
+
55
+ config.wrappers :horizontal_form, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
56
+ b.use :html5
57
+ b.use :placeholder
58
+ b.optional :maxlength
59
+ b.optional :pattern
60
+ b.optional :min_max
61
+ b.optional :readonly
62
+ b.use :label, class: 'col-sm-3 control-label'
63
+
64
+ b.wrapper tag: 'div', class: 'col-sm-9' do |ba|
65
+ ba.use :input, class: 'form-control'
66
+ ba.use :error, wrap_with: { tag: 'span', class: 'help-block' }
67
+ ba.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
68
+ end
69
+ end
70
+
71
+ config.wrappers :horizontal_file_input, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
72
+ b.use :html5
73
+ b.use :placeholder
74
+ b.optional :maxlength
75
+ b.optional :readonly
76
+ b.use :label, class: 'col-sm-3 control-label'
77
+
78
+ b.wrapper tag: 'div', class: 'col-sm-9' do |ba|
79
+ ba.use :input
80
+ ba.use :error, wrap_with: { tag: 'span', class: 'help-block' }
81
+ ba.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
82
+ end
83
+ end
84
+
85
+ config.wrappers :horizontal_boolean, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
86
+ b.use :html5
87
+ b.optional :readonly
88
+
89
+ b.wrapper tag: 'div', class: 'col-sm-offset-3 col-sm-9' do |wr|
90
+ wr.wrapper tag: 'div', class: 'checkbox' do |ba|
91
+ ba.use :label_input, class: 'col-sm-9'
92
+ end
93
+
94
+ wr.use :error, wrap_with: { tag: 'span', class: 'help-block' }
95
+ wr.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
96
+ end
97
+ end
98
+
99
+ config.wrappers :horizontal_radio_and_checkboxes, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
100
+ b.use :html5
101
+ b.optional :readonly
102
+
103
+ b.use :label, class: 'col-sm-3 control-label'
104
+
105
+ b.wrapper tag: 'div', class: 'col-sm-9' do |ba|
106
+ ba.use :input
107
+ ba.use :error, wrap_with: { tag: 'span', class: 'help-block' }
108
+ ba.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
109
+ end
110
+ end
111
+
112
+ config.wrappers :inline_form, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
113
+ b.use :html5
114
+ b.use :placeholder
115
+ b.optional :maxlength
116
+ b.optional :pattern
117
+ b.optional :min_max
118
+ b.optional :readonly
119
+ b.use :label, class: 'sr-only'
120
+
121
+ b.use :input, class: 'form-control'
122
+ b.use :error, wrap_with: { tag: 'span', class: 'help-block' }
123
+ b.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
124
+ end
125
+
126
+ config.default_wrapper = :vertical_form
127
+ config.wrapper_mappings = {
128
+ check_boxes: :vertical_radio_and_checkboxes,
129
+ radio_buttons: :vertical_radio_and_checkboxes,
130
+ file: :vertical_file_input,
131
+ boolean: :vertical_boolean
132
+ }
133
+ end
@@ -1,5 +1,5 @@
1
1
  module Tramway
2
2
  module Core
3
- VERSION = '0.1.0.3'
3
+ VERSION = '0.1.0.4'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,79 +1,77 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tramway-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.3
4
+ version: 0.1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pavel Kalashnikov
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-19 00:00:00.000000000 Z
11
+ date: 2017-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: bundler
14
+ name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.16'
20
- type: :development
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: '1.16'
27
- - !ruby/object:Gem::Dependency
28
- name: rake
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '10.0'
34
- type: :development
19
+ version: 5.1.4
20
+ type: :runtime
35
21
  prerelease: false
36
22
  version_requirements: !ruby/object:Gem::Requirement
37
23
  requirements:
38
24
  - - "~>"
39
25
  - !ruby/object:Gem::Version
40
- version: '10.0'
26
+ version: 5.1.4
41
27
  - !ruby/object:Gem::Dependency
42
- name: rspec
28
+ name: pg
43
29
  requirement: !ruby/object:Gem::Requirement
44
30
  requirements:
45
- - - "~>"
31
+ - - ">="
46
32
  - !ruby/object:Gem::Version
47
- version: '3.0'
33
+ version: '0'
48
34
  type: :development
49
35
  prerelease: false
50
36
  version_requirements: !ruby/object:Gem::Requirement
51
37
  requirements:
52
- - - "~>"
38
+ - - ">="
53
39
  - !ruby/object:Gem::Version
54
- version: '3.0'
55
- description: Tramway core for other engines
40
+ version: '0'
41
+ description: Core for all Tramway Rails Engines
56
42
  email:
57
43
  - kalashnikovisme@gmail.com
58
44
  executables: []
59
45
  extensions: []
60
46
  extra_rdoc_files: []
61
47
  files:
62
- - ".gitignore"
63
- - ".rspec"
64
- - ".travis.yml"
65
- - Gemfile
48
+ - MIT-LICENSE
66
49
  - README.md
67
50
  - Rakefile
68
- - bin/console
69
- - bin/setup
51
+ - app/assets/config/tramway_core_manifest.js
52
+ - app/assets/javascripts/tramway/core/application.js
53
+ - app/assets/javascripts/tramway/core/web/application.js
54
+ - app/assets/stylesheets/tramway/core/application.css.sass
55
+ - app/controllers/tramway/core/application_controller.rb
56
+ - app/controllers/tramway/core/web/application_controller.rb
57
+ - app/forms/tramway/core/application_form.rb
58
+ - app/helpers/tramway/core/application_helper.rb
59
+ - app/helpers/tramway/core/web/application_helper.rb
60
+ - app/jobs/tramway/core/application_job.rb
61
+ - app/mailers/tramway/core/application_mailer.rb
62
+ - app/models/tramway/core/application_record.rb
63
+ - app/views/layouts/tramway/core/application.html.erb
64
+ - config/routes.rb
65
+ - lib/tasks/tramway/core_tasks.rake
70
66
  - lib/tramway/core.rb
67
+ - lib/tramway/core/engine.rb
68
+ - lib/tramway/core/generators/install_generator.rb
69
+ - lib/tramway/core/generators/templates/initializers/simple_form.rb
70
+ - lib/tramway/core/generators/templates/initializers/simple_form_bootstrap.rb
71
71
  - lib/tramway/core/version.rb
72
- - lib/tramway/core/web.rb
73
- - lib/tramway/core/web/application_controller.rb
74
- - tramway-core.gemspec
75
72
  homepage: https://github.com/kalashnikovisme/tramway-core
76
- licenses: []
73
+ licenses:
74
+ - MIT
77
75
  metadata: {}
78
76
  post_install_message:
79
77
  rdoc_options: []
@@ -94,5 +92,5 @@ rubyforge_project:
94
92
  rubygems_version: 2.6.11
95
93
  signing_key:
96
94
  specification_version: 4
97
- summary: Tramway core for other engines
95
+ summary: Core for all Tramway Rails Engines
98
96
  test_files: []
data/.gitignore DELETED
@@ -1,12 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /_yardoc/
4
- /coverage/
5
- /doc/
6
- /pkg/
7
- /spec/reports/
8
- /tmp/
9
-
10
- # rspec failure tracking
11
- .rspec_status
12
- *.gem
data/.rspec DELETED
@@ -1,3 +0,0 @@
1
- --format documentation
2
- --color
3
- --require spec_helper
@@ -1,5 +0,0 @@
1
- sudo: false
2
- language: ruby
3
- rvm:
4
- - 2.4.1
5
- before_install: gem install bundler -v 1.16.0
data/Gemfile DELETED
@@ -1,6 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
-
5
- # Specify your gem's dependencies in tramway-core.gemspec
6
- gemspec
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "tramway/core"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
@@ -1,4 +0,0 @@
1
- module Tramway::Core
2
- module Web
3
- end
4
- end
@@ -1,9 +0,0 @@
1
- class ApplicationController < ActionController::Base
2
- end
3
-
4
- module Tramway::Core
5
- module Web
6
- class ApplicationController < ::ApplicationController
7
- end
8
- end
9
- end
@@ -1,26 +0,0 @@
1
-
2
- lib = File.expand_path("../lib", __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require "tramway/core/version"
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "tramway-core"
8
- spec.version = Tramway::Core::VERSION
9
- spec.authors = ["Pavel Kalashnikov"]
10
- spec.email = ["kalashnikovisme@gmail.com"]
11
-
12
- spec.summary = %q{Tramway core for other engines}
13
- spec.description = %q{Tramway core for other engines}
14
- spec.homepage = "https://github.com/kalashnikovisme/tramway-core"
15
-
16
- spec.files = `git ls-files -z`.split("\x0").reject do |f|
17
- f.match(%r{^(test|spec|features)/})
18
- end
19
- spec.bindir = "exe"
20
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
- spec.require_paths = ["lib"]
22
-
23
- spec.add_development_dependency "bundler", "~> 1.16"
24
- spec.add_development_dependency "rake", "~> 10.0"
25
- spec.add_development_dependency "rspec", "~> 3.0"
26
- end