marmottawrapper 0.0.3 → 0.0.4

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: 1f19ae6aa0959942f02554ec4919f40c7a9e57b9
4
- data.tar.gz: b9510def240e9f26e293dc780f0366b70a8115d5
3
+ metadata.gz: 0ab551c3416a281241e942fbfbf3d2bfb1d7689e
4
+ data.tar.gz: debc2199615e70f3a0ef97bb687231f52cae6127
5
5
  SHA512:
6
- metadata.gz: 5c16e67ec755dc097532b946c861ad21667aeb681059e7a9640d568d6eb1862c5c8e77561ecaac5b8204c049ddb2a691bfb9f9dfac219520c70897834b452d93
7
- data.tar.gz: 52c37cd34b676010790cd8587950c2e4be0a5c8b33182ae4b84eab9132b6ef1d7c1cac222e634a91f0d8bf7d84ae4646978bd3ec30b9347dc2154ce78f517478
6
+ metadata.gz: 18253cd1ed816e0b33c01f8918b32b24b8f09eba56291cd07f71e1dee24deac67e847a8bbcce2a7ae8022b00ff8c8e00f19e59550f48e10b2c85b15e18117cfe
7
+ data.tar.gz: 971177a4d6076c638413019bd0732e7cf8b014c5029fc4efc421d5f7327775ffba3a57e324535f208f72f23315b51b495330e0927971382373a5b3d0b9aa5970
data/README.md CHANGED
@@ -3,11 +3,30 @@ marmotta-webapp
3
3
 
4
4
  This project creates rake tasks to easily start up [Apache Marmotta](http://marmotta.apache.org/) in Tomcat 7.
5
5
 
6
- * To start a foreground Marmotta app in Tomcat 7: `cd marmotta; mvn clean tomcat7:run`
6
+ To install:
7
+
8
+ git clone https://github.com/dpla/marmotta-webapp
9
+ cd marmotta-webapp
10
+ bundle install
11
+
12
+ * To start a Marmotta app in Tomcat 7 on port `8080`: `rake marmotta:start`
13
+
14
+ Virtual Machine
15
+ ---------------
16
+ This project comes with a vagrant file that will configure a working environment
17
+ for Marmotta. To use it:
18
+
19
+ vagrant up
20
+ vagrant ssh
21
+ rake marmotta:start
22
+
23
+ Marmotta should now be available on your host machine at port `8087`.
7
24
 
8
25
  TODO:
9
- * [ ] build a runnable JAR file: `cd marmotta; mvn clean package -Prunnable-war`
10
- * [ ] Start a built runnable JAR: `java -jar target/marmotta-webapp-3.2.1-0.0.1-war-exec.jar`
11
- * [ ] Move
26
+ -----
27
+ * [ ] Use a runnable/downloadable JAR file: `mvn clean package -Prunnable-war`, `java -jar target/marmotta-webapp-3.2.1-0.0.1-war-exec.jar`
28
+ * [ ] Add task to download JAR, to make this easier to use in projects.
29
+ * [ ] Make Tomcat port configurable.
30
+ * [ ] Wait for Tomcat to start before quitting `start` task.
12
31
 
13
32
  License: Apache 2.0
@@ -1,3 +1,3 @@
1
1
  class Marmottawrapper
2
- VERSION = '0.0.3'
2
+ VERSION = '0.0.4'
3
3
  end
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
15
15
  s.files = `git ls-files`.split("\n")
16
16
  s.test_files = `git ls-files -- {spec}/*`.split("\n")
17
17
  s.require_paths = ["lib"]
18
- s.license = 'UNSPECIFIED'
18
+ s.license = 'APACHE 2'
19
19
 
20
20
  s.add_dependency 'childprocess'
21
21
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: marmottawrapper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Matienzo
@@ -93,7 +93,7 @@ files:
93
93
  - pom.xml
94
94
  homepage: https://github.com/dpla/marmotta-webapp
95
95
  licenses:
96
- - UNSPECIFIED
96
+ - APACHE 2
97
97
  metadata: {}
98
98
  post_install_message:
99
99
  rdoc_options: []