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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4ad67e856027cffc27b2f90a4ab819ad0017745a
|
|
4
|
+
data.tar.gz: a56e01042de00467b0889ad8f51847074d6ccf71
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 25568a8cdf8492dd58dc896ac4579312ea095dc72c5e9d90c55c6832f223267d5fc6334504892553052eb594d5b9cb777eafaa3f579e899efae018a9b7107c39
|
|
7
|
+
data.tar.gz: d8d914290bec5c2cac80a257837c6342250347bbe6fb2dda3f4b9f56f557e92eedfd8bc9e51a12f04e3eb7535e7dbfce9a267dfad0fcce5eb17aca24b5f48894
|
data/config/routes.rb
CHANGED
data/lib/easy_reports/version.rb
CHANGED
data/test/dummy/Gemfile
CHANGED
data/test/dummy/Gemfile.lock
CHANGED
|
@@ -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
|
data/test/dummy/db/schema.rb
CHANGED
|
@@ -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:
|
|
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.
|
|
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
|