ez_pay2go 0.1.0 → 0.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7283bbf91e962c3a941fa051617bf380b5bf4b1d
4
- data.tar.gz: 1e055b54ad2f42047f8c6b63a999ea728775b322
3
+ metadata.gz: 393de72ffd814d86165c772e04659bf3e620494b
4
+ data.tar.gz: 39de7fd3f95df67e6ac6e83050b67aee568603f3
5
5
  SHA512:
6
- metadata.gz: fe76ac933aa5197dfb405955a04e20c0e75acd2ca5a415aae5ead8c289611c209cde1eb4bb0e024045f25d74b120f8fe8392e98532171f866eddf2a9bb42963b
7
- data.tar.gz: 7a916e09e8cee281d971c5c78a7213f2c2c1250b286b14bf42bd028a7f5c9ee950bdd39fa7e035003aed49b59a691709b39d26058145c8e672b283a4264f4183
6
+ metadata.gz: 3826bcab64493e49539fa6284a131b70c14b174f3bd8563bc5035b3d817722287390010faf89dfbba07f041d474ae76b6c7138e0fba0ec66585d553fcf96713a
7
+ data.tar.gz: be6ac4ed3b94881972cb9ffa32364c89dae8785733f9405c4002eb89065d934ae757adf27a44f8ee5800f6efed178943d6b178e70f7d744493061c96330c75e2
data/README.md CHANGED
@@ -20,9 +20,16 @@ Or install it yourself as:
20
20
 
21
21
  $ gem install pay2go
22
22
 
23
+ Then you can run
24
+
25
+ ```
26
+ $ rails g pay2go
27
+ ```
28
+
29
+ to get the needed config files
30
+
23
31
  ## Usage
24
32
 
25
- TODO: Write usage instructions here
26
33
 
27
34
  ## Development
28
35
 
Binary file
@@ -3,7 +3,7 @@ class Pay2goGenerator < Rails::Generators::Base
3
3
  source_root File.expand_path(__FILE__)
4
4
 
5
5
  def copy_initializer_file
6
- copy_file "templates/pay2go.rb", "config/initializers/pay2go.rb"
7
- copy_file "templates/pay2go.yml", "config/pay2go.yml"
6
+ copy_file "../templates/pay2go.rb", "config/initializers/pay2go.rb"
7
+ copy_file "../templates/pay2go.yml", "config/pay2go.yml"
8
8
  end
9
9
  end
@@ -1,3 +1,3 @@
1
1
  module Pay2go
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ez_pay2go
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Carol Hsu
@@ -69,6 +69,7 @@ files:
69
69
  - Rakefile
70
70
  - bin/console
71
71
  - bin/setup
72
+ - ez_pay2go-0.1.0.gem
72
73
  - lib/generators/pay2go_generator.rb
73
74
  - lib/generators/templates/pay2go.rb
74
75
  - lib/generators/templates/pay2go.yml