dread 0.0.2 → 0.0.3
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 +4 -4
- data/lib/dread/console_output.rb +17 -0
- data/lib/dread/error.rb +4 -0
- data/lib/dread/graph.rb +39 -21
- data/lib/dread/version.rb +1 -1
- data/test/dread_test.rb +17 -3
- data/test/dummy/app/models/account_setting.rb +4 -0
- data/test/dummy/app/models/country.rb +2 -0
- data/test/dummy/app/models/user.rb +3 -2
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20140914191313_create_countries.rb +9 -0
- data/test/dummy/db/migrate/20140914191415_create_account_settings.rb +10 -0
- data/test/dummy/db/schema.rb +14 -1
- data/test/dummy/log/development.log +12 -0
- data/test/dummy/log/test.log +1150 -0
- metadata +11 -1
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dread
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Damir Svrtan
|
@@ -63,13 +63,17 @@ files:
|
|
63
63
|
- README.rdoc
|
64
64
|
- Rakefile
|
65
65
|
- lib/dread.rb
|
66
|
+
- lib/dread/console_output.rb
|
67
|
+
- lib/dread/error.rb
|
66
68
|
- lib/dread/graph.rb
|
67
69
|
- lib/dread/version.rb
|
68
70
|
- lib/tasks/dread.rake
|
69
71
|
- test/dread_test.rb
|
70
72
|
- test/dummy/README.rdoc
|
71
73
|
- test/dummy/Rakefile
|
74
|
+
- test/dummy/app/models/account_setting.rb
|
72
75
|
- test/dummy/app/models/comment.rb
|
76
|
+
- test/dummy/app/models/country.rb
|
73
77
|
- test/dummy/app/models/tweet.rb
|
74
78
|
- test/dummy/app/models/user.rb
|
75
79
|
- test/dummy/bin/bundle
|
@@ -98,6 +102,8 @@ files:
|
|
98
102
|
- test/dummy/db/migrate/20140913143036_create_users.rb
|
99
103
|
- test/dummy/db/migrate/20140913143444_create_tweets.rb
|
100
104
|
- test/dummy/db/migrate/20140913143724_create_comments.rb
|
105
|
+
- test/dummy/db/migrate/20140914191313_create_countries.rb
|
106
|
+
- test/dummy/db/migrate/20140914191415_create_account_settings.rb
|
101
107
|
- test/dummy/db/schema.rb
|
102
108
|
- test/dummy/db/test.sqlite3
|
103
109
|
- test/dummy/log/development.log
|
@@ -133,7 +139,9 @@ specification_version: 4
|
|
133
139
|
summary: Summary of Dread.
|
134
140
|
test_files:
|
135
141
|
- test/dread_test.rb
|
142
|
+
- test/dummy/app/models/account_setting.rb
|
136
143
|
- test/dummy/app/models/comment.rb
|
144
|
+
- test/dummy/app/models/country.rb
|
137
145
|
- test/dummy/app/models/tweet.rb
|
138
146
|
- test/dummy/app/models/user.rb
|
139
147
|
- test/dummy/bin/bundle
|
@@ -162,6 +170,8 @@ test_files:
|
|
162
170
|
- test/dummy/db/migrate/20140913143036_create_users.rb
|
163
171
|
- test/dummy/db/migrate/20140913143444_create_tweets.rb
|
164
172
|
- test/dummy/db/migrate/20140913143724_create_comments.rb
|
173
|
+
- test/dummy/db/migrate/20140914191313_create_countries.rb
|
174
|
+
- test/dummy/db/migrate/20140914191415_create_account_settings.rb
|
165
175
|
- test/dummy/db/schema.rb
|
166
176
|
- test/dummy/db/test.sqlite3
|
167
177
|
- test/dummy/log/development.log
|