trackman 0.5.3 → 0.5.4

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/.gitignore CHANGED
@@ -3,4 +3,5 @@
3
3
  Gemfile.lock
4
4
  pkg/*
5
5
  *.orig
6
- *.DS_Store
6
+ *.DS_Store
7
+ .rspec
data/Gemfile.lock CHANGED
@@ -9,7 +9,7 @@ GIT
9
9
  PATH
10
10
  remote: .
11
11
  specs:
12
- trackman (0.5.3)
12
+ trackman (0.5.4)
13
13
  heroku (>= 2.26.2)
14
14
  json
15
15
  nokogiri
@@ -1,3 +1,3 @@
1
1
  module Trackman
2
- VERSION = "0.5.3"
2
+ VERSION = "0.5.4"
3
3
  end
data/lib/trackman.rb CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  require 'bundler/setup'
3
3
 
4
4
  require File.expand_path('../trackman/core_extensions', __FILE__)
5
- require File.expand_path('../railtie', __FILE__)
5
+ require File.expand_path('../trackman_railtie', __FILE__)
6
6
 
7
7
  module Trackman
8
8
  autoload :Assets, 'trackman/assets'
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trackman
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -161,7 +161,6 @@ files:
161
161
  - lib/generators/controller/controller_generator.rb
162
162
  - lib/generators/controller/templates/controller_layout.rb.erb
163
163
  - lib/generators/controller/templates/view_layout.html.erb
164
- - lib/railtie.rb
165
164
  - lib/trackman.rb
166
165
  - lib/trackman/assets.rb
167
166
  - lib/trackman/assets/asset.rb
@@ -190,6 +189,7 @@ files:
190
189
  - lib/trackman/scaffold/content_saver.rb
191
190
  - lib/trackman/scaffold/pretty-print.xslt
192
191
  - lib/trackman/version.rb
192
+ - lib/trackman_railtie.rb
193
193
  - rails_generators/trackman_controller/USAGE
194
194
  - rails_generators/trackman_controller/templates/controller_layout.rb.erb
195
195
  - rails_generators/trackman_controller/templates/view_layout.html.erb