origen_app_generators 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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e3cda530159092b62b2ae0249bbc4906a742497e
|
|
4
|
+
data.tar.gz: c881d58d855edcc46b55eb3e731b8ebaf74e0709
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1ba2c581f3de522406dc430fd3a9df96f959c5c5c461d186eecbd3fa1b92a0026ac8c732905b101ba354338e91a8d37f42a7e64dfedeba40a1e21ad479fb1717
|
|
7
|
+
data.tar.gz: f9715b9ecc9e562772fcf8fa6119bf8fe8fe08c876c29c3642bd50490aa0c8f0796a9021a478fd543b74a04580a19c526117fb104f17178f73cf6f347443a794
|
data/config/version.rb
CHANGED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Misc
|
|
2
|
+
.irb_history
|
|
3
|
+
|
|
4
|
+
# Editor cruft
|
|
5
|
+
*.swp
|
|
6
|
+
*.swo
|
|
7
|
+
*~
|
|
8
|
+
|
|
9
|
+
# Origen local files
|
|
10
|
+
/.bundle
|
|
11
|
+
/target/.default
|
|
12
|
+
/environment/.default
|
|
13
|
+
/release_note.txt
|
|
14
|
+
/pkg
|
|
15
|
+
/lbin
|
|
16
|
+
/.bin
|
|
17
|
+
/list/referenced.list
|
|
18
|
+
/tags
|
|
19
|
+
/.ref
|
|
20
|
+
/.ws
|
|
21
|
+
/.lsf
|
|
22
|
+
/.db
|
|
23
|
+
/log
|
|
24
|
+
/output
|
|
25
|
+
/web
|
|
26
|
+
/coverage
|
|
27
|
+
/.ref
|
|
28
|
+
/.yardoc
|
|
29
|
+
/.collection
|
|
30
|
+
/.bin
|
|
31
|
+
/.session
|
|
32
|
+
|
|
33
|
+
# Cruft from other revision control systems
|
|
34
|
+
.SYNC
|
|
35
|
+
.svn
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
--color -f doc
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
language: ruby
|
|
2
|
+
rvm:
|
|
3
|
+
- 2.1.0
|
|
4
|
+
- 2.2.2
|
|
5
|
+
script:
|
|
6
|
+
- bundle exec origen -v
|
|
7
|
+
- bundle exec origen specs
|
|
8
|
+
- bundle exec origen examples
|
|
9
|
+
- bundle exec origen web compile --no-serve
|
|
10
|
+
env:
|
|
11
|
+
- ORIGEN_GEM_USE_FROM_SYSTEM=false ORIGEN_GEM_MANAGE_BUNDLER=false
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: origen_app_generators
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stephen McGinty
|
|
@@ -49,6 +49,10 @@ files:
|
|
|
49
49
|
- lib/tasks/app_generators.rake
|
|
50
50
|
- lib/tasks/boot.rb
|
|
51
51
|
- lib/tasks/new_app_tests.rake
|
|
52
|
+
- templates/app_generators/application/.gitignore
|
|
53
|
+
- templates/app_generators/application/.irbrc
|
|
54
|
+
- templates/app_generators/application/.rspec
|
|
55
|
+
- templates/app_generators/application/.travis.yml
|
|
52
56
|
- templates/app_generators/application/Gemfile
|
|
53
57
|
- templates/app_generators/application/Rakefile
|
|
54
58
|
- templates/app_generators/application/config/application.rb
|