weaver 0.8.2 → 0.8.6
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/Gemfile +2 -0
- data/bin/console +1 -0
- data/data/weaver/js/plugins/skeuocard/Gruntfile.coffee +74 -0
- data/{LICENSE.txt → data/weaver/js/plugins/skeuocard/LICENSE} +2 -2
- data/data/weaver/js/plugins/skeuocard/README.md +388 -0
- data/data/weaver/js/plugins/skeuocard/bower.json +40 -0
- data/data/weaver/js/plugins/skeuocard/fonts/ocra-webfont.eot +0 -0
- data/data/weaver/js/plugins/skeuocard/fonts/ocra-webfont.svg +138 -0
- data/data/weaver/js/plugins/skeuocard/fonts/ocra-webfont.ttf +0 -0
- data/data/weaver/js/plugins/skeuocard/fonts/ocra-webfont.woff +0 -0
- data/data/weaver/js/plugins/skeuocard/images/card-flip-arrow.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/card-front-background.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/card-invalid-indicator.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/card-valid-anim.gif +0 -0
- data/data/weaver/js/plugins/skeuocard/images/card-valid-indicator.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/error-pointer.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/issuers/visa-chase-sapphire.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/issuers/visa-simple-front.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/products/amex-front.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/products/dinersclubintl-front.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/products/discover-front.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/products/generic-back.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/products/generic-front.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/products/jcb-front.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/products/maestro-front.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/products/mastercard-front.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/products/unionpay-front.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/products/visa-back.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/products/visa-front.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/src/card-front-background.fw.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/src/error-pointer.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/src/product-amex-front.fw.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/src/product-dinersclub-front.fw.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/src/product-discover-front.fw.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/src/product-generic-front.fw.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/src/product-jcb-front.fw.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/src/product-maestro-front.fw.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/src/product-mastercard-front.fw.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/src/product-unionpay-front.fw.png +0 -0
- data/data/weaver/js/plugins/skeuocard/images/src/product-visa-front.fw.png +0 -0
- data/data/weaver/js/plugins/skeuocard/index.html +124 -0
- data/data/weaver/js/plugins/skeuocard/javascripts/skeuocard.js +1748 -0
- data/data/weaver/js/plugins/skeuocard/javascripts/skeuocard.min.js +2 -0
- data/data/weaver/js/plugins/skeuocard/javascripts/src/CardProduct.coffee +284 -0
- data/data/weaver/js/plugins/skeuocard/javascripts/src/ExpirationInputView.coffee +206 -0
- data/data/weaver/js/plugins/skeuocard/javascripts/src/FlipTabView.coffee +67 -0
- data/data/weaver/js/plugins/skeuocard/javascripts/src/SegmentedCardNumberInputView.coffee +284 -0
- data/data/weaver/js/plugins/skeuocard/javascripts/src/Skeuocard.coffee +439 -0
- data/data/weaver/js/plugins/skeuocard/javascripts/src/TextInputView.coffee +42 -0
- data/data/weaver/js/plugins/skeuocard/javascripts/vendor/cssua.min.js +7 -0
- data/data/weaver/js/plugins/skeuocard/javascripts/vendor/demo.fix.js +17 -0
- data/data/weaver/js/plugins/skeuocard/javascripts/vendor/jquery-2.0.3.min.js +5 -0
- data/data/weaver/js/plugins/skeuocard/package-lock.json +760 -0
- data/data/weaver/js/plugins/skeuocard/package.json +19 -0
- data/data/weaver/js/plugins/skeuocard/screenshot.png +0 -0
- data/data/weaver/js/plugins/skeuocard/styles/demo.css +2 -0
- data/data/weaver/js/plugins/skeuocard/styles/demo.css.map +7 -0
- data/data/weaver/js/plugins/skeuocard/styles/skeuocard.css +2 -0
- data/data/weaver/js/plugins/skeuocard/styles/skeuocard.css.map +7 -0
- data/data/weaver/js/plugins/skeuocard/styles/skeuocard.reset.css +2 -0
- data/data/weaver/js/plugins/skeuocard/styles/skeuocard.reset.css.map +7 -0
- data/data/weaver/js/plugins/skeuocard/styles/src/_browser_hacks.scss +52 -0
- data/data/weaver/js/plugins/skeuocard/styles/src/_cards.scss +502 -0
- data/data/weaver/js/plugins/skeuocard/styles/src/_util.scss +15 -0
- data/data/weaver/js/plugins/skeuocard/styles/src/demo.scss +265 -0
- data/data/weaver/js/plugins/skeuocard/styles/src/skeuocard.reset.scss +60 -0
- data/data/weaver/js/plugins/skeuocard/styles/src/skeuocard.scss +178 -0
- data/exe/weaver +25 -24
- data/lib/weaver.rb +2 -0
- data/lib/weaver/element_types/accordion.rb +2 -0
- data/lib/weaver/element_types/action.rb +6 -4
- data/lib/weaver/element_types/code.rb +2 -0
- data/lib/weaver/element_types/credit_card_form.rb +117 -0
- data/lib/weaver/element_types/dynamic_table.rb +7 -5
- data/lib/weaver/element_types/dynamic_table_cell.rb +2 -0
- data/lib/weaver/element_types/form.rb +9 -7
- data/lib/weaver/element_types/form_elements.rb +16 -73
- data/lib/weaver/element_types/javascript_object.rb +2 -0
- data/lib/weaver/element_types/modal_dialog.rb +2 -0
- data/lib/weaver/element_types/panel.rb +2 -0
- data/lib/weaver/element_types/row.rb +2 -0
- data/lib/weaver/element_types/tabs.rb +2 -0
- data/lib/weaver/element_types/textfield_javascript.rb +37 -35
- data/lib/weaver/elements.rb +2 -0
- data/lib/weaver/page_types/center_page.rb +2 -0
- data/lib/weaver/page_types/empty_page.rb +10 -8
- data/lib/weaver/page_types/nav_page.rb +2 -0
- data/lib/weaver/page_types/nonnav_page.rb +14 -12
- data/lib/weaver/page_types/page.rb +67 -65
- data/lib/weaver/page_types/raw_page.rb +2 -0
- data/lib/weaver/page_types/sidenav_page.rb +33 -31
- data/lib/weaver/page_types/structured_page.rb +2 -0
- data/lib/weaver/page_types/topnav_page.rb +35 -35
- data/lib/weaver/version.rb +3 -1
- data/lib/weaver/weave.rb +2 -0
- data/spec/spec_helper.rb +4 -0
- data/spec/weaver_spec.rb +13 -0
- data/weaver.gemspec +4 -3
- metadata +73 -12
- data/.gitignore +0 -10
- data/.gitmodules +0 -3
- data/.rspec +0 -2
- data/.travis.yml +0 -3
- data/CODE_OF_CONDUCT.md +0 -13
- data/README.md +0 -39
- data/Rakefile +0 -1
- data/data/weaver/js/MathJax/extensions/a11y/mathmaps/.htaccess +0 -3
data/lib/weaver/version.rb
CHANGED
data/lib/weaver/weave.rb
CHANGED
data/spec/spec_helper.rb
ADDED
data/spec/weaver_spec.rb
ADDED
data/weaver.gemspec
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
lib = File.expand_path('lib', __dir__)
|
|
2
4
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
5
|
require 'weaver/version'
|
|
@@ -21,9 +23,8 @@ Gem::Specification.new do |spec|
|
|
|
21
23
|
spec.homepage = 'https://davidsiaw.github.io/weaver-docs/'
|
|
22
24
|
spec.license = 'MIT'
|
|
23
25
|
|
|
24
|
-
spec.files =
|
|
25
|
-
|
|
26
|
-
end
|
|
26
|
+
spec.files = Dir['{data,exe,lib,bin}/**/*'] + %w[Gemfile weaver.gemspec]
|
|
27
|
+
spec.test_files = Dir['{test,spec,features}/**/*']
|
|
27
28
|
spec.bindir = 'exe'
|
|
28
29
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
29
30
|
spec.require_paths = ['lib']
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: weaver
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Siaw
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-08-
|
|
11
|
+
date: 2019-08-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -88,15 +88,7 @@ executables:
|
|
|
88
88
|
extensions: []
|
|
89
89
|
extra_rdoc_files: []
|
|
90
90
|
files:
|
|
91
|
-
- ".gitignore"
|
|
92
|
-
- ".gitmodules"
|
|
93
|
-
- ".rspec"
|
|
94
|
-
- ".travis.yml"
|
|
95
|
-
- CODE_OF_CONDUCT.md
|
|
96
91
|
- Gemfile
|
|
97
|
-
- LICENSE.txt
|
|
98
|
-
- README.md
|
|
99
|
-
- Rakefile
|
|
100
92
|
- bin/console
|
|
101
93
|
- bin/setup
|
|
102
94
|
- data/weaver/css/animate.css
|
|
@@ -411,7 +403,6 @@ files:
|
|
|
411
403
|
- data/weaver/js/MathJax/extensions/a11y/invalid_keypress.mp3
|
|
412
404
|
- data/weaver/js/MathJax/extensions/a11y/invalid_keypress.ogg
|
|
413
405
|
- data/weaver/js/MathJax/extensions/a11y/mathjax-sre.js
|
|
414
|
-
- data/weaver/js/MathJax/extensions/a11y/mathmaps/.htaccess
|
|
415
406
|
- data/weaver/js/MathJax/extensions/a11y/mathmaps/functions/algebra.js
|
|
416
407
|
- data/weaver/js/MathJax/extensions/a11y/mathmaps/functions/elementary.js
|
|
417
408
|
- data/weaver/js/MathJax/extensions/a11y/mathmaps/functions/functions_spanish.js
|
|
@@ -31348,6 +31339,71 @@ files:
|
|
|
31348
31339
|
- data/weaver/js/plugins/rickshaw/rickshaw.min.js
|
|
31349
31340
|
- data/weaver/js/plugins/rickshaw/vendor/d3.v3.js
|
|
31350
31341
|
- data/weaver/js/plugins/select2/select2.full.min.js
|
|
31342
|
+
- data/weaver/js/plugins/skeuocard/Gruntfile.coffee
|
|
31343
|
+
- data/weaver/js/plugins/skeuocard/LICENSE
|
|
31344
|
+
- data/weaver/js/plugins/skeuocard/README.md
|
|
31345
|
+
- data/weaver/js/plugins/skeuocard/bower.json
|
|
31346
|
+
- data/weaver/js/plugins/skeuocard/fonts/ocra-webfont.eot
|
|
31347
|
+
- data/weaver/js/plugins/skeuocard/fonts/ocra-webfont.svg
|
|
31348
|
+
- data/weaver/js/plugins/skeuocard/fonts/ocra-webfont.ttf
|
|
31349
|
+
- data/weaver/js/plugins/skeuocard/fonts/ocra-webfont.woff
|
|
31350
|
+
- data/weaver/js/plugins/skeuocard/images/card-flip-arrow.png
|
|
31351
|
+
- data/weaver/js/plugins/skeuocard/images/card-front-background.png
|
|
31352
|
+
- data/weaver/js/plugins/skeuocard/images/card-invalid-indicator.png
|
|
31353
|
+
- data/weaver/js/plugins/skeuocard/images/card-valid-anim.gif
|
|
31354
|
+
- data/weaver/js/plugins/skeuocard/images/card-valid-indicator.png
|
|
31355
|
+
- data/weaver/js/plugins/skeuocard/images/error-pointer.png
|
|
31356
|
+
- data/weaver/js/plugins/skeuocard/images/issuers/visa-chase-sapphire.png
|
|
31357
|
+
- data/weaver/js/plugins/skeuocard/images/issuers/visa-simple-front.png
|
|
31358
|
+
- data/weaver/js/plugins/skeuocard/images/products/amex-front.png
|
|
31359
|
+
- data/weaver/js/plugins/skeuocard/images/products/dinersclubintl-front.png
|
|
31360
|
+
- data/weaver/js/plugins/skeuocard/images/products/discover-front.png
|
|
31361
|
+
- data/weaver/js/plugins/skeuocard/images/products/generic-back.png
|
|
31362
|
+
- data/weaver/js/plugins/skeuocard/images/products/generic-front.png
|
|
31363
|
+
- data/weaver/js/plugins/skeuocard/images/products/jcb-front.png
|
|
31364
|
+
- data/weaver/js/plugins/skeuocard/images/products/maestro-front.png
|
|
31365
|
+
- data/weaver/js/plugins/skeuocard/images/products/mastercard-front.png
|
|
31366
|
+
- data/weaver/js/plugins/skeuocard/images/products/unionpay-front.png
|
|
31367
|
+
- data/weaver/js/plugins/skeuocard/images/products/visa-back.png
|
|
31368
|
+
- data/weaver/js/plugins/skeuocard/images/products/visa-front.png
|
|
31369
|
+
- data/weaver/js/plugins/skeuocard/images/src/card-front-background.fw.png
|
|
31370
|
+
- data/weaver/js/plugins/skeuocard/images/src/error-pointer.png
|
|
31371
|
+
- data/weaver/js/plugins/skeuocard/images/src/product-amex-front.fw.png
|
|
31372
|
+
- data/weaver/js/plugins/skeuocard/images/src/product-dinersclub-front.fw.png
|
|
31373
|
+
- data/weaver/js/plugins/skeuocard/images/src/product-discover-front.fw.png
|
|
31374
|
+
- data/weaver/js/plugins/skeuocard/images/src/product-generic-front.fw.png
|
|
31375
|
+
- data/weaver/js/plugins/skeuocard/images/src/product-jcb-front.fw.png
|
|
31376
|
+
- data/weaver/js/plugins/skeuocard/images/src/product-maestro-front.fw.png
|
|
31377
|
+
- data/weaver/js/plugins/skeuocard/images/src/product-mastercard-front.fw.png
|
|
31378
|
+
- data/weaver/js/plugins/skeuocard/images/src/product-unionpay-front.fw.png
|
|
31379
|
+
- data/weaver/js/plugins/skeuocard/images/src/product-visa-front.fw.png
|
|
31380
|
+
- data/weaver/js/plugins/skeuocard/index.html
|
|
31381
|
+
- data/weaver/js/plugins/skeuocard/javascripts/skeuocard.js
|
|
31382
|
+
- data/weaver/js/plugins/skeuocard/javascripts/skeuocard.min.js
|
|
31383
|
+
- data/weaver/js/plugins/skeuocard/javascripts/src/CardProduct.coffee
|
|
31384
|
+
- data/weaver/js/plugins/skeuocard/javascripts/src/ExpirationInputView.coffee
|
|
31385
|
+
- data/weaver/js/plugins/skeuocard/javascripts/src/FlipTabView.coffee
|
|
31386
|
+
- data/weaver/js/plugins/skeuocard/javascripts/src/SegmentedCardNumberInputView.coffee
|
|
31387
|
+
- data/weaver/js/plugins/skeuocard/javascripts/src/Skeuocard.coffee
|
|
31388
|
+
- data/weaver/js/plugins/skeuocard/javascripts/src/TextInputView.coffee
|
|
31389
|
+
- data/weaver/js/plugins/skeuocard/javascripts/vendor/cssua.min.js
|
|
31390
|
+
- data/weaver/js/plugins/skeuocard/javascripts/vendor/demo.fix.js
|
|
31391
|
+
- data/weaver/js/plugins/skeuocard/javascripts/vendor/jquery-2.0.3.min.js
|
|
31392
|
+
- data/weaver/js/plugins/skeuocard/package-lock.json
|
|
31393
|
+
- data/weaver/js/plugins/skeuocard/package.json
|
|
31394
|
+
- data/weaver/js/plugins/skeuocard/screenshot.png
|
|
31395
|
+
- data/weaver/js/plugins/skeuocard/styles/demo.css
|
|
31396
|
+
- data/weaver/js/plugins/skeuocard/styles/demo.css.map
|
|
31397
|
+
- data/weaver/js/plugins/skeuocard/styles/skeuocard.css
|
|
31398
|
+
- data/weaver/js/plugins/skeuocard/styles/skeuocard.css.map
|
|
31399
|
+
- data/weaver/js/plugins/skeuocard/styles/skeuocard.reset.css
|
|
31400
|
+
- data/weaver/js/plugins/skeuocard/styles/skeuocard.reset.css.map
|
|
31401
|
+
- data/weaver/js/plugins/skeuocard/styles/src/_browser_hacks.scss
|
|
31402
|
+
- data/weaver/js/plugins/skeuocard/styles/src/_cards.scss
|
|
31403
|
+
- data/weaver/js/plugins/skeuocard/styles/src/_util.scss
|
|
31404
|
+
- data/weaver/js/plugins/skeuocard/styles/src/demo.scss
|
|
31405
|
+
- data/weaver/js/plugins/skeuocard/styles/src/skeuocard.reset.scss
|
|
31406
|
+
- data/weaver/js/plugins/skeuocard/styles/src/skeuocard.scss
|
|
31351
31407
|
- data/weaver/js/plugins/slick/slick.min.js
|
|
31352
31408
|
- data/weaver/js/plugins/slimscroll/jquery.slimscroll.js
|
|
31353
31409
|
- data/weaver/js/plugins/slimscroll/jquery.slimscroll.min.js
|
|
@@ -31373,6 +31429,7 @@ files:
|
|
|
31373
31429
|
- lib/weaver/element_types/accordion.rb
|
|
31374
31430
|
- lib/weaver/element_types/action.rb
|
|
31375
31431
|
- lib/weaver/element_types/code.rb
|
|
31432
|
+
- lib/weaver/element_types/credit_card_form.rb
|
|
31376
31433
|
- lib/weaver/element_types/dynamic_table.rb
|
|
31377
31434
|
- lib/weaver/element_types/dynamic_table_cell.rb
|
|
31378
31435
|
- lib/weaver/element_types/form.rb
|
|
@@ -31395,6 +31452,8 @@ files:
|
|
|
31395
31452
|
- lib/weaver/page_types/topnav_page.rb
|
|
31396
31453
|
- lib/weaver/version.rb
|
|
31397
31454
|
- lib/weaver/weave.rb
|
|
31455
|
+
- spec/spec_helper.rb
|
|
31456
|
+
- spec/weaver_spec.rb
|
|
31398
31457
|
- weaver.gemspec
|
|
31399
31458
|
homepage: https://davidsiaw.github.io/weaver-docs/
|
|
31400
31459
|
licenses:
|
|
@@ -31421,4 +31480,6 @@ rubygems_version: 2.7.8
|
|
|
31421
31480
|
signing_key:
|
|
31422
31481
|
specification_version: 4
|
|
31423
31482
|
summary: Website generator
|
|
31424
|
-
test_files:
|
|
31483
|
+
test_files:
|
|
31484
|
+
- spec/weaver_spec.rb
|
|
31485
|
+
- spec/spec_helper.rb
|
data/.gitignore
DELETED
data/.gitmodules
DELETED
data/.rspec
DELETED
data/.travis.yml
DELETED
data/CODE_OF_CONDUCT.md
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# Contributor Code of Conduct
|
|
2
|
-
|
|
3
|
-
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
|
|
4
|
-
|
|
5
|
-
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
|
|
6
|
-
|
|
7
|
-
Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
|
|
8
|
-
|
|
9
|
-
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
|
|
10
|
-
|
|
11
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
|
|
12
|
-
|
|
13
|
-
This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
|
data/README.md
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
# Weaver
|
|
2
|
-
|
|
3
|
-
Website generator and shortcuts
|
|
4
|
-
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
6
|
-
|
|
7
|
-
## Installation
|
|
8
|
-
|
|
9
|
-
Add this line to your application's Gemfile:
|
|
10
|
-
|
|
11
|
-
```ruby
|
|
12
|
-
gem 'weaver'
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
And then execute:
|
|
16
|
-
|
|
17
|
-
$ bundle
|
|
18
|
-
|
|
19
|
-
Or install it yourself as:
|
|
20
|
-
|
|
21
|
-
$ gem install weaver
|
|
22
|
-
|
|
23
|
-
## Usage
|
|
24
|
-
|
|
25
|
-
TODO: Write usage instructions here
|
|
26
|
-
|
|
27
|
-
## Development
|
|
28
|
-
|
|
29
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
30
|
-
|
|
31
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
32
|
-
|
|
33
|
-
## Contributing
|
|
34
|
-
|
|
35
|
-
1. Fork it ( https://github.com/[my-github-username]/weaver/fork )
|
|
36
|
-
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
37
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
38
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
|
39
|
-
5. Create a new Pull Request
|
data/Rakefile
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
require 'bundler/gem_tasks'
|