easy_reports 0.0.8 → 0.0.9

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: 37dc6147a1300f25fedf30a22f5e41da177c53cf
4
- data.tar.gz: bf9ef12722dbed5b584ae1020b041d7f973b4640
3
+ metadata.gz: 4ad67e856027cffc27b2f90a4ab819ad0017745a
4
+ data.tar.gz: a56e01042de00467b0889ad8f51847074d6ccf71
5
5
  SHA512:
6
- metadata.gz: c93bded14607298faad7ff5cf67cbe10df93906e0ba389ecd8d4057717daf244c12a136fb937e5712ea2ea17a925275ed7a12fd192f144685d7b368457a2815e
7
- data.tar.gz: 5373809a6613173e69578cd106b774dcd3815b0b01b6eb58c11857747e219918d054c43f3649034914d23f7ac67c9474c152ae775416b1efeef21b08b2eed76b
6
+ metadata.gz: 25568a8cdf8492dd58dc896ac4579312ea095dc72c5e9d90c55c6832f223267d5fc6334504892553052eb594d5b9cb777eafaa3f579e899efae018a9b7107c39
7
+ data.tar.gz: d8d914290bec5c2cac80a257837c6342250347bbe6fb2dda3f4b9f56f557e92eedfd8bc9e51a12f04e3eb7535e7dbfce9a267dfad0fcce5eb17aca24b5f48894
data/config/routes.rb CHANGED
@@ -1,4 +1,3 @@
1
1
  EasyReports::Engine.routes.draw do
2
- resources :reports
3
-
2
+ resources :reports, path_names: {index: :dashboard}
4
3
  end
@@ -1,3 +1,3 @@
1
1
  module EasyReports
2
- VERSION = "0.0.8"
2
+ VERSION = "0.0.9"
3
3
  end
data/test/dummy/Gemfile CHANGED
@@ -2,5 +2,7 @@
2
2
  source "https://rubygems.org"
3
3
 
4
4
  gem 'sqlite3'
5
- gem 'easy_reports'
5
+ gem 'easy_reports', path: '../..'
6
+ gem 'slim'
7
+
6
8
  # gem "rails"
@@ -1,3 +1,11 @@
1
+ PATH
2
+ remote: ../..
3
+ specs:
4
+ easy_reports (0.0.8)
5
+ rails (~> 4.1.8)
6
+ slim
7
+ slim-rails
8
+
1
9
  GEM
2
10
  remote: https://rubygems.org/
3
11
  specs:
@@ -29,8 +37,6 @@ GEM
29
37
  tzinfo (~> 1.1)
30
38
  arel (5.0.1.20140414130214)
31
39
  builder (3.2.2)
32
- easy_reports (0.0.7)
33
- rails (~> 4.1.8)
34
40
  erubis (2.7.0)
35
41
  hike (1.2.3)
36
42
  i18n (0.6.11)
@@ -59,6 +65,14 @@ GEM
59
65
  rake (>= 0.8.7)
60
66
  thor (>= 0.18.1, < 2.0)
61
67
  rake (10.4.2)
68
+ slim (2.1.0)
69
+ temple (~> 0.6.9)
70
+ tilt (>= 1.3.3, < 2.1)
71
+ slim-rails (2.1.5)
72
+ actionpack (>= 3.0, < 4.2)
73
+ activesupport (>= 3.0, < 4.2)
74
+ railties (>= 3.0, < 4.2)
75
+ slim (~> 2.0)
62
76
  sprockets (2.12.3)
63
77
  hike (~> 1.2)
64
78
  multi_json (~> 1.0)
@@ -69,6 +83,7 @@ GEM
69
83
  activesupport (>= 3.0)
70
84
  sprockets (>= 2.8, < 4.0)
71
85
  sqlite3 (1.3.10)
86
+ temple (0.6.10)
72
87
  thor (0.19.1)
73
88
  thread_safe (0.3.4)
74
89
  tilt (1.4.1)
@@ -79,5 +94,6 @@ PLATFORMS
79
94
  ruby
80
95
 
81
96
  DEPENDENCIES
82
- easy_reports
97
+ easy_reports!
98
+ slim
83
99
  sqlite3
@@ -0,0 +1,11 @@
1
+ # This migration comes from easy_reports (originally 20141207141745)
2
+ class CreateEasyReportsReports < ActiveRecord::Migration
3
+ def change
4
+ create_table :easy_reports_reports do |t|
5
+ t.string :title
6
+ t.text :description
7
+
8
+ t.timestamps
9
+ end
10
+ end
11
+ end
@@ -11,6 +11,13 @@
11
11
  #
12
12
  # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(version: 0) do
14
+ ActiveRecord::Schema.define(version: 20141207144158) do
15
+
16
+ create_table "easy_reports_reports", force: true do |t|
17
+ t.string "title"
18
+ t.text "description"
19
+ t.datetime "created_at"
20
+ t.datetime "updated_at"
21
+ end
15
22
 
16
23
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_reports
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Davydenkov Mihail
@@ -154,6 +154,7 @@ files:
154
154
  - test/dummy/config/locales/en.yml
155
155
  - test/dummy/config/routes.rb
156
156
  - test/dummy/config/secrets.yml
157
+ - test/dummy/db/migrate/20141207144158_create_easy_reports_reports.easy_reports.rb
157
158
  - test/dummy/db/schema.rb
158
159
  - test/dummy/lib/assets/.keep
159
160
  - test/dummy/log/.keep
@@ -225,6 +226,7 @@ test_files:
225
226
  - test/dummy/config/locales/en.yml
226
227
  - test/dummy/config/routes.rb
227
228
  - test/dummy/config/secrets.yml
229
+ - test/dummy/db/migrate/20141207144158_create_easy_reports_reports.easy_reports.rb
228
230
  - test/dummy/db/schema.rb
229
231
  - test/dummy/lib/assets/.keep
230
232
  - test/dummy/log/.keep