rails_time_travel 0.1.1 → 0.1.2

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
  SHA256:
3
- metadata.gz: 96435086bb724fb9d4d2208297f278caed7b5e66c14febce3057bbe4bd5c0cdc
4
- data.tar.gz: f0b450b5acbb7aa398812a5f9c3d43b3a62cb4219fff49851e49d84c1efd2e98
3
+ metadata.gz: 8e568eb8d4b32f5754e18727cff5a5f963881fcadf233c556941935096d41f07
4
+ data.tar.gz: d5a9bcc43db4055bd083bfbc5cbb133876ecad56f5c40b2141d84ab1f16d1acb
5
5
  SHA512:
6
- metadata.gz: ee9abffe9ea7581276424d40f123fb5625dbddb4caadcf2be75864745c910e7af8b9e855d4271c5c39623ea35a305af80077e6bcf65a192f1fa558042de5d67c
7
- data.tar.gz: fd7032a58c146c8f7b5ab3002f68c9ce3f3597e6d3f05dd349b13ac1a45c92aaccd4ced4e53c1c235853be5916b1549d79e1c80bd82b6419ccd547e22fef4126
6
+ metadata.gz: 273c3f378bd0a029d1e32a91084fd675b6237c45d2d593139d29859f2b76b6cc0b7c16800b4b889b0298f90047a9100b15ca2c0cba1735454c2e462b42612a4a
7
+ data.tar.gz: d971ebdeb7d71c7cbbf1633554b269032469e3904813f728b11d4f1b208f700048d2bd26afb4f414d243f82df5114aaf03416d82e87e02968a941e5124a4ca5a
@@ -4,7 +4,4 @@ require "rails_time_travel/engine"
4
4
  require "timecop"
5
5
 
6
6
  module RailsTimeTravel
7
- end
8
-
9
- require "rails_time_travel/routes"
10
-
7
+ end
@@ -1,3 +1,3 @@
1
1
  module RailsTimeTravel
2
- VERSION = '0.1.1'
2
+ VERSION = '0.1.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_time_travel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Igor Kasyanchuk
@@ -88,9 +88,7 @@ files:
88
88
  - lib/rails_time_travel.rb
89
89
  - lib/rails_time_travel/controller.rb
90
90
  - lib/rails_time_travel/engine.rb
91
- - lib/rails_time_travel/routes.rb
92
91
  - lib/rails_time_travel/version.rb
93
- - lib/tasks/rails_time_travel_tasks.rake
94
92
  homepage: https://github.com/igorkasyanchuk/rails_time_travel
95
93
  licenses:
96
94
  - MIT
@@ -1,7 +0,0 @@
1
- module ActionDispatch::Routing
2
- class Mapper
3
- def mount_routes(options = {})
4
- mount RailsTimeTravel::Engine => '/rails/time_travel', :as => options[:as] || 'rails_time_travel'
5
- end
6
- end
7
- end
@@ -1,4 +0,0 @@
1
- # desc "Explaining what the task does"
2
- # task :rails_time_travel do
3
- # # Task goes here
4
- # end