joyce 0.1.8 → 0.1.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: 00927d0842b5ce39f41d70dd54a64eb3f18ce527
4
- data.tar.gz: 0aa4e1d4ef7696aa8a9a233424a56f3b5c0d6d98
3
+ metadata.gz: 96e7cdeab0cddc9d53e7df670b56c30992e7284b
4
+ data.tar.gz: 280f5be0d3589d17183a7fa8490decd9f8abe557
5
5
  SHA512:
6
- metadata.gz: 55f7b7b60a0860745d81f05a19b0e480e9a8ecac28390f3c27b3f361e8e439c202ad4cbfbad976d91721af42ca5944851d7a0859faf38cbcf047b9d67fed81e7
7
- data.tar.gz: ad0a0ac59292b7fdeac5ee7c2d09750fec173b5789232e87c4210b19c689e169835c7e10397c9dea8bb9feeb8f9b1e75e64863c4d47daf5c64eec2b0a62514f5
6
+ metadata.gz: bcee9f356d1108af887d4b8d6e6e5927282cd83ff1f6ac4981801c3929bcb0e3b6ed131ddce70519b01fa0d07c6fe03057653f7bd60af510746bd673b97e255a
7
+ data.tar.gz: d744c7de64e60eed32ca4be90c409bf01fa8d81089aa8a19c004096a2616c49f5674ef84a60088896b908cb3474ad22831eb39d2fb40d165815bd9bcd2f96cb6
data/README.md CHANGED
@@ -1,11 +1,12 @@
1
1
  # joyce
2
2
 
3
+ [![Joyce portrait](https://upload.wikimedia.org/wikipedia/commons/1/1e/Revolutionary_Joyce_Better_Contrast.jpg)](https://upload.wikimedia.org/wikipedia/commons/1/1e/Revolutionary_Joyce_Better_Contrast.jpg)
3
4
 
4
5
  * [Homepage](https://rubygems.org/gems/joyce)
5
6
  * [Documentation](http://rubydoc.info/gems/joyce/frames)
6
7
  * [Email](mailto:jweissman1986 at gmail.com)
7
8
 
8
- [![Code Climate GPA](https://codeclimate.com/github//joyce/badges/gpa.svg)](https://codeclimate.com/github//joyce)
9
+ [![Code Climate GPA](https://codeclimate.com/github/deepcerulean/joyce/badges/gpa.svg)](https://codeclimate.com/github/deepcerulean/joyce)
9
10
 
10
11
  ## Description
11
12
 
@@ -21,6 +21,8 @@ module Joyce
21
21
  copy_gems(gem_list, destination: File.join(gem_destination))
22
22
  puts "--- gems copied"
23
23
 
24
+ # TODO copy assets...?
25
+
24
26
  puts "--- writing main.rb..."
25
27
  write_main_rb(app_class_name: app_class_name, root: target_app_bundle_root, app_name: app_name)
26
28
  puts "--- main.rb written!"
@@ -33,13 +35,11 @@ module Joyce
33
35
  end
34
36
 
35
37
  file.puts <<-ruby
36
- require 'fileutils'
37
- FileUtils.mkdir_p "#{Dir.home}/#{app_name}/"
38
- $stdout.reopen("#{Dir.home}/#{app_name}/app.log", "w")
39
- $stderr.reopen("#{Dir.home}/#{app_name}/err.log", "w")
38
+ $stdout.reopen("#{Dir.home}/#{app_name}.log", "w")
39
+ $stderr.reopen("#{Dir.home}/#{app_name}.error.log", "w")
40
40
  GEM_REQUIRE_PATHS = #{require_paths.flatten.inspect}
41
41
  GEM_REQUIRE_PATHS.each do |path|
42
- $LOAD_PATH.unshift File.expand_path(File.join("../vendor/gems", path), __FILE__)
42
+ $LOAD_PATH.unshift File.expand_path(File.join('../vendor/gems', path), __FILE__)
43
43
  end
44
44
  require 'joyce'
45
45
  require 'application'
data/lib/joyce/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Joyce
2
2
  # joyce version
3
- VERSION = "0.1.8"
3
+ VERSION = "0.1.9"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: joyce
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joseph Weissman