wagons 0.2.0 → 0.2.1

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.
Files changed (29) hide show
  1. data/lib/generators/wagon/templates/%singular_name%.gemspec.tt +3 -3
  2. data/lib/wagons/version.rb +1 -1
  3. data/lib/wagons/wagon_tasks.rake +27 -0
  4. data/test/ci/rails3.gemfile.lock +2 -2
  5. data/test/dummy/Gemfile.lock +1 -1
  6. data/test/dummy/db/development.sqlite3 +0 -0
  7. data/test/dummy/db/test.sqlite3 +0 -0
  8. data/test/dummy/log/development.log +4990 -1312
  9. data/test/dummy/log/test.log +20626 -9159
  10. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  11. data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  12. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  13. data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  14. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  15. data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  16. data/test/dummy/vendor/wagons/superliner/Gemfile.lock +1 -1
  17. metadata +161 -155
  18. checksums.yaml +0 -15
  19. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  20. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  21. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  22. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  23. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  24. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  25. /data/test/dummy/test/{unit → models}/person_test.rb +0 -0
  26. /data/test/dummy/vendor/wagons/superliner/test/{functionals → controllers}/cities_controller_test.rb +0 -0
  27. /data/test/dummy/vendor/wagons/superliner/test/{functionals → controllers}/people_controller_test.rb +0 -0
  28. /data/test/dummy/vendor/wagons/superliner/test/{unit → models}/city_test.rb +0 -0
  29. /data/test/dummy/vendor/wagons/superliner/test/{unit → models}/person_test.rb +0 -0
@@ -7,11 +7,11 @@ require "<%= singular_name %>/version"
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "<%= singular_name %>"
9
9
  s.version = <%= class_name %>::VERSION
10
- s.authors = ["TODO: Your name"]
11
- s.email = ["TODO: Your email"]
10
+ s.authors = ["Your name"]
11
+ s.email = ["Your email"]
12
12
  #s.homepage = "TODO"
13
13
  s.summary = "<%= wagon_name.humanize.titleize %>"
14
- s.description = "TODO: description"
14
+ s.description = "Wagon description"
15
15
 
16
16
  s.files = Dir["{app,config,db,lib}/**/*"] + ["Rakefile"]
17
17
  s.test_files = Dir["test/**/*"]
@@ -1,3 +1,3 @@
1
1
  module Wagons
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
@@ -143,5 +143,32 @@ namespace :app do
143
143
  end
144
144
  end
145
145
 
146
+ task :notes => 'app:notes'
147
+
148
+ task :stats => ['wagon:statsetup', 'app:stats']
149
+
150
+ namespace :wagon do
151
+ task :statsetup do
152
+ require 'rails/code_statistics'
153
+ STATS_DIRECTORIES.clear
154
+ STATS_DIRECTORIES += [
155
+ %w(Controllers app/controllers),
156
+ %w(Helpers app/helpers),
157
+ %w(Models app/models),
158
+ %w(Mailers app/mailers),
159
+ %w(Javascripts app/assets/javascripts),
160
+ %w(Libraries lib/),
161
+ %w(APIs app/apis),
162
+ %w(Controller\ tests test/controllers),
163
+ %w(Helper\ tests test/helpers),
164
+ %w(Model\ tests test/models),
165
+ %w(Mailer\ tests test/mailers),
166
+ %w(Integration\ tests test/integration),
167
+ %w(Functional\ tests\ (old) test/functional),
168
+ %w(Unit\ tests\ (old) test/unit)
169
+ ].collect { |name, dir| [ name, "#{ENGINE_PATH}/#{dir}" ] }.select { |name, dir| File.directory?(dir) }
170
+ end
171
+ end
172
+
146
173
 
147
174
  task :default => :test
@@ -1,7 +1,7 @@
1
1
  PATH
2
- remote: /Users/pascal/Code/ruby/wagons
2
+ remote: /home/tgdzupa7/workspace/wagons
3
3
  specs:
4
- wagons (0.1.1)
4
+ wagons (0.2.0)
5
5
  bundler (>= 1.1)
6
6
  rails (>= 3.2)
7
7
  seed-fu-ndo (>= 0.0.2)
@@ -1,5 +1,5 @@
1
1
  PATH
2
- remote: /Users/pascal/Code/ruby/wagons
2
+ remote: /home/tgdzupa7/workspace/wagons
3
3
  specs:
4
4
  wagons (0.2.0)
5
5
  bundler (>= 1.1)
Binary file
Binary file